Skip to content

Commit c7943d9

Browse files
committed
cleanup
1 parent 99fa7ce commit c7943d9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

custom_components/ecoflow/ecoflow/receive.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -377,9 +377,9 @@ def parse_inverter_river_mini(d: bytes):
377377
("ac_out_voltage", 4, _to_int_ex(div=1000)),
378378
("ac_out_current", 4, _to_int_ex(div=1000)),
379379
("ac_out_freq", 1, _to_int),
380-
("ac_in_voltage", 4, _to_int_ex(div=1000)), #?
381-
("ac_in_current", 4, _to_int_ex(div=1000)), #?
382-
("ac_in_freq", 1, _to_int), #?
380+
("ac_in_voltage", 4, _to_int_ex(div=1000)),
381+
("ac_in_current", 4, _to_int_ex(div=1000)),
382+
("ac_in_freq", 1, _to_int),
383383
("ac_out_temp", 1, _to_int),
384384
("dc_in_voltage", 4, _to_int_ex(div=1000)),
385385
("dc_in_current", 4, _to_int_ex(div=1000)),
@@ -389,12 +389,12 @@ def parse_inverter_river_mini(d: bytes):
389389
("ac_out_xboost", 1, _to_int),
390390
("ac_out_voltage_config", 4, _to_int_ex(div=1000)),
391391
("ac_out_freq_config", 1, _to_int),
392-
("ac_in_slow", 1, _to_int), #?
392+
("ac_in_slow", 1, _to_int),
393393
("battery_main_level", 1, _to_int),
394394
("battery_main_voltage", 4, _to_int_ex(div=1000)),
395395
("battery_current", 4, _to_int),
396396
("battery_main_temp", 1, _to_int),
397-
("_open_bms_idx", 1, _to_int), #?
397+
("_open_bms_idx", 1, _to_int),
398398
("battery_capacity_remain", 4, _to_int),
399399
("battery_capacity_full", 4, _to_int),
400400
("battery_cycles", 4, _to_int),

0 commit comments

Comments
 (0)