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
[–] 3 points 2 years ago (3 children)

I have a couple of these Zooz Z-Wave water detectors. They were recognized by zwave2js, and easy to set up and test. My only issue is that I get triggers from them whenever the Z-Wave network changes - like, when I add new devices, I get an alarm from them.

They're tiny - like the size of an old box of (matchstick) matches. If they were cheaper, If put one under every sink.

  • source
  • hideshow 3 child comments
  • [–] 2 points 2 years ago* (2 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.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 1 point 2 years ago (1 child)

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

  • source
  • parent
  • hideshow 1 child comment
  • [–] 3 points 2 years 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"
    
  • source
  • parent