Skip to content
This repository was archived by the owner on Mar 17, 2025. It is now read-only.

Commit fde3ba7

Browse files
committed
Fix letter break timing
1 parent 95fae1f commit fde3ba7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/FirebaseMorse_ESP8266/FirebaseMorse_ESP8266.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ void loop() {
7171
while (digitalRead(morseButtonPin) == HIGH) {
7272
if (millis() - upStarted > longMillis) {
7373
updateDisplay(currentMessage, 'w', currentLetter);
74-
} else if (millis() - upStarted > shortMillis) {
74+
} else if (millis() - upStarted > shortMillis*3) {
7575
updateDisplay(currentMessage, 'l', currentLetter);
7676
} else {
7777
updateDisplay(currentMessage, ' ', currentLetter);

0 commit comments

Comments
 (0)