Update ATtiny84 firmware to use Volume Up for shutdown, configure KeyMapper, and document automatic boot hotspot

This commit is contained in:
2026-05-25 17:49:30 +02:00
parent 8d101b3162
commit 7d669b4a91
3 changed files with 58 additions and 24 deletions
+2 -2
View File
@@ -85,7 +85,7 @@ uint32_t get_mce_code(uint8_t button) {
case 4: return 0x800f0421; // RIGHT
case 5: return 0x800f0422; // ENTER / OK
case 6: return 0x800f0423; // BACK
case 7: return 0x800f046f; // F12 (Shutdown)
case 7: return 0x800f0410; // Volume Up (Shutdown)
default: return 0;
}
}
@@ -210,7 +210,7 @@ void loop() {
current_button = 0;
}
// Car off detection: if no LIN activity for 5 seconds, send F12 to trigger shutdown
// Car off detection: if no LIN activity for 5 seconds, send Volume Up to trigger shutdown
if (is_car_on && (millis() - last_lin_activity_time > 5000)) {
is_car_on = false;
for (int i = 0; i < 3; i++) {