From 1a2a45ae00e2f59860c9ce2e17ebbb2967b26b7f Mon Sep 17 00:00:00 2001 From: --global <--global> Date: Mon, 8 May 2023 01:02:13 +0300 Subject: [PATCH] play button wakes up the screen now --- software/GToE/GToE.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/software/GToE/GToE.ino b/software/GToE/GToE.ino index 44fe527..b3e422a 100644 --- a/software/GToE/GToE.ino +++ b/software/GToE/GToE.ino @@ -319,7 +319,7 @@ void checkInputs() { resetClocks(); playBtnPushed = true; saveState(); - lastInteractionTime = millis(); + updateScreen(); //to wake up the screen if turned off } else if (digitalRead(START_STOP_BTN_PIN) && playBtnPushed) { playBtnPushed = false; }