Skip to content

Commit

Permalink
Fix total loads and ev energy sensors
Browse files Browse the repository at this point in the history
  • Loading branch information
vortizhe committed Sep 11, 2023
1 parent 475c52b commit 40abae5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/ingeteam_modbus/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@
"PV_Total_Power": ["PV Total Power", "pv_total_power", "W", None],
"PV_Total_Energy": ["PV Total Energy", "pv_total_energy", "Wh", None, "pv_total_power"],
"Total_Loads_Power": ["Total Loads Power", "total_loads_power", "W", None],
"Total_Loads_Energy": ["Total Loads Energy", "total_loads_energy", "Wh", "total_loads_power"],
"Total_Loads_Energy": ["Total Loads Energy", "total_loads_energy", "Wh", None, "total_loads_power"],
"EV_Power": ["EV Power", "ev_power", "W", None],
"EV_Energy": ["EV Energy", "ev_energy", "Wh", "ev_power"],
"EV_Energy": ["EV Energy", "ev_energy", "Wh", None, "ev_power"],
}

BATTERY_SENSOR_TYPES = {
Expand Down

0 comments on commit 40abae5

Please sign in to comment.