You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
missing line with datalayer.battery2.info.total_capacity_Wh, hence a wrong calculation for remaining
datalayer.battery2.status.remaining_capacity_Wh = (battery2_energy_content_maximum_kWh * 1000); // Convert kWh to Wh
The text was updated successfully, but these errors were encountered:
Expected Behavior
expected to see the remaining capacity on the webpage like 1st battery
Actual Behavior
it shows the total capacity
Steps to Reproduce the Problem
open the webpage
Settings
7.9.2
BMW i3 double
BYD ModBus
HW_LILYGO
no
yes
yes
yes
A typo occurred while copying from battery1 to battery2:
datalayer.battery.info.total_capacity_Wh = (battery_energy_content_maximum_kWh * 1000); // Convert kWh to Wh
datalayer.battery.status.remaining_capacity_Wh = battery_predicted_energy_charge_condition;
vs.
missing line with datalayer.battery2.info.total_capacity_Wh, hence a wrong calculation for remaining
datalayer.battery2.status.remaining_capacity_Wh = (battery2_energy_content_maximum_kWh * 1000); // Convert kWh to Wh
The text was updated successfully, but these errors were encountered: