1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-15 23:13:07 +01:00

Add new system page

This commit is contained in:
2024-12-07 11:11:07 +01:00
parent 4ad82299fc
commit 57e194e39d
3 changed files with 151 additions and 18 deletions

View File

@@ -128,6 +128,15 @@ int readKeypad(uint thSensitivity) {
}
}
// System page with key 5 and 4 in fast series
if (keycode2 == 5 && keycodeold2 == 4) {
keycode = 0;
keycodeold = 0;
keycode2 = 0;
keycodeold2 = 0;
keystatus = 12;
}
// Key lock with key 1 and 6 or 6 and 1 in fast series
if((keycode2 == 1 && keycodeold2 == 6) || (keycode2 == 6 && keycodeold2 == 1)) {
keycode = 0;