diff --git a/main/serialhandler.h b/main/serialhandler.h index 4bcde72..f4257d9 100644 --- a/main/serialhandler.h +++ b/main/serialhandler.h @@ -89,6 +89,16 @@ void handleSerial() InputDispatcher::backButton(true); InputDispatcher::backButton(false); break; + case 'z': + case 'Z': + InputDispatcher::blinkLeftButton(true); + InputDispatcher::blinkLeftButton(false); + break; + case 'u': + case 'U': + InputDispatcher::blinkRightButton(true); + InputDispatcher::blinkRightButton(false); + break; } } }