From 367907d432af8e49212c6ddd22b4fb0e962f282d Mon Sep 17 00:00:00 2001 From: CommanderRedYT Date: Sun, 15 May 2022 23:42:04 +0200 Subject: [PATCH] Added reboot key --- main/debuginputhandler.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main/debuginputhandler.cpp b/main/debuginputhandler.cpp index 025f7bf..d82c104 100644 --- a/main/debuginputhandler.cpp +++ b/main/debuginputhandler.cpp @@ -170,6 +170,10 @@ void handleNormalChar(char c) quickactions::blink_right(); } break; + case 'b': + case 'B': + esp_restart(); + break; } } }