klatremis / esphome-for-deye

Esphome component for Deye 3 phase inverters for Home Assistant
113 stars 30 forks source link

Why is "Out-of-grid–total power" not updated every time? #36

Open sundsvald opened 2 months ago

sundsvald commented 2 months ago

"Out-of-grid–total power" is working as if it have a "skip_updates: 2". Is the "skip_updates: 2" inherited from another variable?

...

fabhund commented 2 months ago

Yes. The ESPhome modbus controller combines same beginning adresses into one call, to lower the amount of requests. The skip_updates applies to all belonging to that same start adress. It's decsribed in the ESPhome modbus controller documentation.

sundsvald commented 2 months ago

Thanks.