Move BMS files into Arduino sketch folder

This commit is contained in:
Nick Ward
2026-06-04 00:38:15 -06:00
parent 49ddb01a42
commit 6adddc358e
3 changed files with 1 additions and 1 deletions
+22
View File
@@ -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();