Add ESP32 alarms system status and debug commands

This commit is contained in:
2026-06-04 00:59:51 -06:00
parent d971afde96
commit 817db651ce
5 changed files with 111 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#pragma once
struct AlarmState {
bool lowSoc = false;
bool criticalSoc = false;
bool lowVoltage = false;
bool highBatteryTemp = false;
bool cellImbalance = false;
bool bmsDisconnected = false;
};
extern AlarmState alarms;
void updateAlarms();