pail23 / stiebel_eltron_isg_component

Stiebel Eltron ISG integration for Home Assistant
MIT License
45 stars 19 forks source link

Compressor binary sensor always off #59

Closed thorsten closed 1 year ago

thorsten commented 1 year ago

First of all, pretty cool integration! I own a Stiebel Eltron LWZ 304 Trend and a ISG Plus.

Version of the custom_component

v20235.2

Describe the bug

The entity "binary_sensor.stiebel_eltron_isg_compressor" is always "off", although my own modbus configuration fetches the correct information.

My working Modbus configuration

      - name: "LWZ BETRIEBSSTATUS"
        unique_id: "lwz_betriebsstatus"
        address: 2000
        slave: 1
        count: 1
        input_type: input
        data_type: uint16

and

  - binary_sensor:
      - name: "LWZ Kompressor aktiv"
        state: "{{ states('sensor.lwz_betriebsstatus')|int|bitwise_and(2) > 0 }}"
northalpha commented 1 year ago

Can confirm this for my LWZ 5s plus with ISG web, same modbus config and same template sensor like @thorsten

Bildschirmfoto 2023-05-16 um 10 33 29

pail23 commented 1 year ago

This should be fixed in 2023.5.3. Could you please test the new release?

thorsten commented 1 year ago

@pail23 yes, it's fixed with the 2023.5.3 release, thanks a lot.