this post was submitted on 03 Oct 2023
22 points (95.8% liked)

homeassistant

11833 readers
238 users here now

Home Assistant is open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server. Available for free at home-assistant.io

founded 1 year ago
MODERATORS
 

Can any one recommend the best leak detector (non cloud) that integrates with HA?

you are viewing a single comment's thread
view the rest of the comments
[–] IphtashuFitz 2 points 11 months ago* (last edited 11 months ago) (1 children)

I had a similar issue with other zwave sensors. With a little help I was able to refine my triggers so that my automations only run when they go from an “off” state to an “on” state. Before that they’d trigger from a “none” or “unknown” state, which is what happens when HA or zwave2js restarts.

[–] [email protected] 1 points 11 months ago (1 children)

Ah thanks! These are the only ZWave I have that does this - I'll check that!

[–] IphtashuFitz 3 points 11 months ago

Here's the relevant part of one of my automations. It's for a light sensor I have attached to my washing machine:

trigger:
  - platform: state
    entity_id:
      - binary_sensor.washer_light_sensor_sensor_state_any
    from: "on"
    to: "off"