Integrate JBD BMS telemetry into ESP32 status

This commit is contained in:
Nick Ward
2026-06-04 00:36:28 -06:00
parent d72f9d3e29
commit 49ddb01a42
3 changed files with 269 additions and 12 deletions
@@ -0,0 +1,22 @@
#pragma once
struct BmsData {
bool connected = false;
bool valid = false;
float soc = 0;
float voltage = 0;
float current = 0;
float remainingAh = 0;
float capacityAh = 0;
float temperatureF = 0;
int cycleCount = 0;
int cellCount = 0;
int ntcCount = 0;
};
extern BmsData bmsData;
void initBms();
void updateBms();