Lost battery input/output energy today entities #45
Replies: 5 comments 14 replies
-
Had a quick look, on first sight these parameters seem to have disappeared from the source code, except for X1 installations. I might be wrong ... Should be easy to fix, unless there is a reason for removing them I am not aware of |
Beta Was this translation helpful? Give feedback.
-
no, it is not the same, today gives the numbeers for the last day, these new variables give the totals since day zero, so it gives me an indication how much money my batteries have saved since day 1 |
Beta Was this translation helpful? Give feedback.
-
As an example: In my system, the 'today' value returns around 7kWh, the
total value returns around 800 kWh
…On Sat, Apr 2, 2022 at 1:08 PM wills106 ***@***.***> wrote:
So it might still give battery dashboard support for the Gen2 then.
Increasing total. Just need to adapt the registers for the Gen2
—
Reply to this email directly, view it on GitHub
<#45 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AC2B23WHZRJP5TW7345AO43VDATDRANCNFSM5SKTXZFA>
.
You are receiving this because you commented.Message ID:
<wills106/homsassistant-solax-modbus/repo-discussions/45/comments/2490816@
github.com>
--
Jan Colpaert
+32 478 882435
|
Beta Was this translation helpful? Give feedback.
-
I would do something like: imaginary examlple (still some tuning needed)
GEN2 = 0x0001
GEN3 = 0x0002
GEN4 = 0x0004
X1 = 0x0100
X3 = 0x0200
EPS = 0x1000
ALL = 0xFFFF
ALL_ENTITIES = {
"grid_export_total": MyEntityDescription(
name="Grid Export Total",
key="grid_export_total",
native_unit_of_measurement=ENERGY_KILO_WATT_HOUR,
icon="mdi:solar-power",
device_class=DEVICE_CLASS_ENERGY,
state_class=STATE_CLASS_TOTAL_INCREASING,
entity_registry_enabled_default=False,
ormask = GEN2 | GEN3 | GEN4
andmask = X1 | X3
),
"backup_nightcharge_upper_soc"] = MyEntityDescription(
name="Backup Night Charge Upper SOC",
key="backup_nightcharge_upper_soc",
native_unit_of_measurement=PERCENTAGE,
device_class=DEVICE_CLASS_BATTERY,
ormask = GEN4
andmask = X1
),
"eps_min_esc_soc": MyEntityDescription(
name="EPS Min Esc SOC",
key="eps_min_esc_soc",
native_unit_of_measurement=PERCENTAGE,
ormask = GEN2 | GEN3 | GEN4
andmask = EPS
),
…On Sat, Apr 2, 2022 at 1:48 PM wills106 ***@***.***> wrote:
So something a bit like:
"pv_total_power"gen2,gen3,gen4
"discharger_end_time_1"gen2,gen4
"feedine_nightcharge_upper_soc"gen4
—
Reply to this email directly, view it on GitHub
<#45 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AC2B23UHQP7QQZYVNNI4FXLVDAXYTANCNFSM5SKTXZFA>
.
You are receiving this because you commented.Message ID:
<wills106/homsassistant-solax-modbus/repo-discussions/45/comments/2490903@
github.com>
--
Jan Colpaert
+32 478 882435
|
Beta Was this translation helpful? Give feedback.
-
Thanks!! After the update, it works again! |
Beta Was this translation helpful? Give feedback.
-
Hi,
I have lost the entities for battery input and output energy - I can no longer use Energy in Lovelace (missing flows in and out of battery). Tried to reload integration but no luck. Is this an error in my system or is there something else? It has worked perfectly before.
Beta Was this translation helpful? Give feedback.
All reactions