Fixed missing return statement on keyboard input
This commit is contained in:
parent
6dc045e66f
commit
e697bf6790
@ -1303,8 +1303,10 @@ void parseAndDisplay(String line) {
|
|||||||
void handleKeyboardInput(char key) {
|
void handleKeyboardInput(char key) {
|
||||||
lastActivityTime = millis(); // Update last activity time to reset the inactivity timer
|
lastActivityTime = millis(); // Update last activity time to reset the inactivity timer
|
||||||
|
|
||||||
if (!screenOn)
|
if (!screenOn) {
|
||||||
turnOnScreen();
|
turnOnScreen();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
static bool altPressed = false;
|
static bool altPressed = false;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user