Added iMQ/EQ toggle via touchscreen

This commit is contained in:
Sjef Verhoeven PE5PVB
2025-01-03 12:11:25 +01:00
parent 0c657f02c1
commit 39c67cef78
3 changed files with 56 additions and 49 deletions

View File

@@ -165,6 +165,8 @@ void doTouchEvent(uint16_t x, uint16_t y) {
} else if (x > 0 && x < 30 && y > 25 && y < 90) {
doTuneMode(); // Toggle tune mode
return;
} else if (x > 250 && x < 320 && y > 50 && y < 80) {
toggleiMSEQ(); // Toggle iMQ/EQ
}
}

View File

@@ -41,4 +41,5 @@ extern void KeyUp();
extern void ButtonPress();
extern void DoMenu();
extern void ModeButtonPress();
extern void toggleiMSEQ();
#endif