Created
June 6, 2021 16:05
-
-
Save simonprickett/a4407a900fcbe8ce8483ebdf6b2819e7 to your computer and use it in GitHub Desktop.
Power down the Pomodoro timer.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (M5.BtnPWR.wasPressed()) { | |
drawScreen("Bye, love you!", 0); | |
playTone(1); | |
delay(3000); | |
M5.M5Ink.clear(); | |
delay(1000); | |
currentState = STATE_IDLE; | |
M5.PowerDown(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment