Skip to content

Commit 90eb08a

Browse files
committed
Fix River 2 missing remaining time sensors
1 parent 860073a commit 90eb08a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • custom_components/ef_ble/eflib/devices

custom_components/ef_ble/eflib/devices/river2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ class Device(DeviceBase, RawDataProps):
5656
ac_input_power = raw_field(pb_inv.input_watts)
5757
ac_output_power = raw_field(pb_inv.output_watts)
5858

59-
remain_time_charging = raw_field(pb_ems.chg_remain_time)
60-
remain_time_discharging = raw_field(pb_ems.dsg_remain_time)
59+
remaining_time_charging = raw_field(pb_ems.chg_remain_time)
60+
remaining_time_discharging = raw_field(pb_ems.dsg_remain_time)
6161

6262
dc_mode = raw_field(pb_mppt.cfg_chg_type, DCMode.from_value)
6363

0 commit comments

Comments
 (0)