acid-drop- Unnamed repository; edit this file 'description' to name the repository. |
git clone git://git.acid.vegas/-c.git |
Log | Files | Refs | Archive | README | LICENSE |
commit 6dc045e66f1f8b45046f33270713a851955df495
parent e77b192dee6e3d10a1d627b38901d9677ba2058a Author: acidvegas <acid.vegas@acid.vegas> Date: Wed, 5 Jun 2024 20:20:53 -0400 Fixed screen turn on not working from keyboard input Diffstat:
|
1 file changed, 3 insertions(+), 0 deletions(-) |
diff --git a/src/main.ino b/src/main.ino @@ -1303,6 +1303,9 @@ void parseAndDisplay(String line) { void handleKeyboardInput(char key) { lastActivityTime = millis(); // Update last activity time to reset the inactivity timer + if (!screenOn) + turnOnScreen(); + static bool altPressed = false; if (key == '\n' || key == '\r') { // Enter |