From 4d413ec8bd76c56c3e8028325de79823b9fdc3ae Mon Sep 17 00:00:00 2001 From: KlausMu Date: Sat, 13 Jan 2024 12:30:21 +0100 Subject: [PATCH] Bugfix keypad --- Platformio/src/main.cpp | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/Platformio/src/main.cpp b/Platformio/src/main.cpp index 4e82c51..53b4a19 100644 --- a/Platformio/src/main.cpp +++ b/Platformio/src/main.cpp @@ -97,7 +97,7 @@ const byte ROWS = 5; //four rows const byte COLS = 5; //four columns //define the symbols on the buttons of the keypads char hexaKeys[ROWS][COLS] = { - {'s','^','-','m','r'}, // source, channel+, Volume-, mute, record + {'s','^','-','m','e'}, // source, channel+, Volume-, mute, record {'i','r','+','k','d'}, // info, right, Volume+, OK, down {'4','v','1','3','2'}, // blue, channel-, red, yellow, green {'>','o','b','u','l'}, // forward, off, back, up, left @@ -1016,15 +1016,16 @@ void loop() { } // Keypad Handling - customKeypad.getKey(); // Populate key list - for(int i=0; i