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

Commit 42809b7

Browse files
committed
Fix letter break timing
1 parent 58c7ca2 commit 42809b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: 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)