Fix button mapping

This commit is contained in:
Tomislav Kopić 2024-06-12 18:12:05 +02:00
parent 4e96f28edc
commit 45a827f016

View File

@ -31,7 +31,7 @@
//#define U8G2_LAYOUT_MIRROR //#define U8G2_LAYOUT_MIRROR
/**************************************************************************/ /**************************************************************************/
#ifdef U8G2_LAYOUT_NORMAL #ifdef U8G2_LAYOUT_NORMAL1002714
U8G2_SSD1306_128X64_NONAME_2_HW_I2C display(U8G2_R0); U8G2_SSD1306_128X64_NONAME_2_HW_I2C display(U8G2_R0);
#endif #endif
@ -43,9 +43,9 @@ U8G2_SSD1306_128X64_NONAME_2_HW_I2C display(U8G2_R2);
U8G2_SSD1306_128X64_NONAME_2_HW_I2C display(U8G2_MIRROR); U8G2_SSD1306_128X64_NONAME_2_HW_I2C display(U8G2_MIRROR);
#endif #endif
#define PIN_BTN_L 15 // D6 #define PIN_BTN_L 12 // D6
#define PIN_BTN_M 13 // D7 #define PIN_BTN_M 13 // D7
#define PIN_BTN_R 12 // D8 #define PIN_BTN_R 15 // D8
//define PIN_BTN_SAVE 3 //define PIN_BTN_SAVE 3
#define PIN_BUZZER 14 // D5 #define PIN_BUZZER 14 // D5
@ -373,4 +373,4 @@ void loop() {
saveStateToEEPROM(&cpuState); saveStateToEEPROM(&cpuState);
} }
#endif #endif
} }