Skip to content

Commit

Permalink
Fix letter break timing
Browse files Browse the repository at this point in the history
  • Loading branch information
ed7coyne committed May 23, 2016
1 parent 58c7ca2 commit 42809b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/FirebaseMorse_ESP8266/FirebaseMorse_ESP8266.ino
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ void loop() {
while (digitalRead(morseButtonPin) == HIGH) {
if (millis() - upStarted > longMillis) {
updateDisplay(currentMessage, 'w', currentLetter);
} else if (millis() - upStarted > shortMillis) {
} else if (millis() - upStarted > shortMillis*3) {
updateDisplay(currentMessage, 'l', currentLetter);
} else {
updateDisplay(currentMessage, ' ', currentLetter);
Expand Down

0 comments on commit 42809b7

Please sign in to comment.