diff --git a/OpenWatchWinder.ino b/OpenWatchWinder.ino index 3156acb8a11dcd6c22281feb0ca0b49f4ee1c093..655799db32a5d984e802c62bec6a482836702426 100644 --- a/OpenWatchWinder.ino +++ b/OpenWatchWinder.ino @@ -243,10 +243,13 @@ void handleSwEvent(AceButton *button, uint8_t eventType, uint8_t buttonState) case W_RIGHT: case W_PAUSE: Serial.println(">> LongPress: Stop Winding"); - pwr_led.Reset(); - pwr_led.Blink(100, 500).Forever(); Stop = true; Continue = false; + if (WState != W_PAUSE) + { + pwr_led.Reset(); + pwr_led.Blink(100, 500).Forever(); + } break; default: break; diff --git a/README.md b/README.md index 2542bae0e4a5c214a477c436f8bfc25dd149b05c..c56d30ddae2988bf19b6444eff075cd7dfa4d81d 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,8 @@ configured amount of minutes (`PAUSE_MIN`), and eventually restart the cycles. T ## LED Status * **Solid**: Standby / Manually Stopped -* **Slow Blinking** (1s on, 0.2s off): Winding -* **Fast Blinking** (0.1 on, 0.5s off): Stopping, returning to home position (when manually stopped) +* **Long Blinking** (1s on, 0.2s off): Winding +* **Short Blinking** (0.1 on, 0.5s off): Stopping, returning to home position (when manually stopped) * **Slow Breathing**: Paused, waiting for next cycles * **Fast Breathing**: Paused, the next cycle will start in <1 minute