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
Changed registers works also with:
Manager: 1.85
Master: 2.11
What "Load Power" should show for the user? Inverter power lost during work or home consumption?
For me Load values seems odd and only above 0 when any kind of AC/DC conversion is active (battery/pv to grid for example).
Maybe it is just energy waste. I switched code to different registers and values are much more realiable.
31127 - Total load
31029 -> 31129 - R load
31030 -> 31131 - S load
31031 -> 31133 - T load
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Inverter: H3-10.0-E
Manager: 1.91
Master: 2.19
Slave: 1.03
Changed registers works also with:
Manager: 1.85
Master: 2.11
What "Load Power" should show for the user? Inverter power lost during work or home consumption?
For me Load values seems odd and only above 0 when any kind of AC/DC conversion is active (battery/pv to grid for example).
Maybe it is just energy waste. I switched code to different registers and values are much more realiable.
31127 - Total load
31029 -> 31129 - R load
31030 -> 31131 - S load
31031 -> 31133 - T load
Changes in:
[https://github.com/nathanmarlor/foxess_modbus/blob/main/custom_components/foxess_modbus/entities/entity_descriptions.py]
Lines from 1294:
yield _load_power(
"Total",
addresses=[
ModbusAddressesSpec(holding=[31127], models=Inv.H3_SET),
],
)
yield _load_power(
"R",
addresses=[
# ModbusAddressesSpec(holding=[31029], models=Inv.H3_SET),
ModbusAddressesSpec(holding=[31129], models=Inv.H3_SET),
ModbusAddressesSpec(holding=[39220, 39219], models=Inv.H3_PRO_SET | Inv.H3_SMART),
],
)
yield _load_power(
"S",
addresses=[
# ModbusAddressesSpec(holding=[31030], models=Inv.H3_SET),
ModbusAddressesSpec(holding=[31131], models=Inv.H3_SET),
ModbusAddressesSpec(holding=[39222, 39221], models=Inv.H3_PRO_SET | Inv.H3_SMART),
],
)
yield _load_power(
"T",
addresses=[
# ModbusAddressesSpec(holding=[31031], models=Inv.H3_SET),
ModbusAddressesSpec(holding=[31133], models=Inv.H3_SET),
ModbusAddressesSpec(holding=[39224, 39223], models=Inv.H3_PRO_SET | Inv.H3_SMART),
],
)
Beta Was this translation helpful? Give feedback.
All reactions