mirror of
https://github.com/supleed2/ELEC50003-P1-CW.git
synced 2024-12-22 21:45:49 +00:00
Add battery cycle tracking to Command<->Control reference doc
This commit is contained in:
parent
0483397ae6
commit
f3ca90fb2e
|
@ -15,8 +15,9 @@ void loop()
|
||||||
DynamicJsonDocument rdoc(1024); // receive doc, not sure how big this needs to be
|
DynamicJsonDocument rdoc(1024); // receive doc, not sure how big this needs to be
|
||||||
deserializeJson(rdoc, WebSocket); // Take JSON input from WebSocket
|
deserializeJson(rdoc, WebSocket); // Take JSON input from WebSocket
|
||||||
state = rdoc["st"]; // State: -1 = Error, 0 = Idle, 1 = Moving, 2 = Charging
|
state = rdoc["st"]; // State: -1 = Error, 0 = Idle, 1 = Moving, 2 = Charging
|
||||||
batteryVoltage = rdoc["bV"];
|
batteryVoltage = rdoc["bV"];
|
||||||
batteryLevel = rdoc["bL"];
|
batteryLevel = rdoc["bL"];
|
||||||
|
batteryCycles = rdoc["bC"];
|
||||||
totalTripDistance = rdoc["tD"];
|
totalTripDistance = rdoc["tD"];
|
||||||
currentHeading = rdoc["cH"];
|
currentHeading = rdoc["cH"];
|
||||||
current_x = rdoc["pos"][0];
|
current_x = rdoc["pos"][0];
|
||||||
|
|
Loading…
Reference in a new issue