Salus/it600/CO10RF - Working with home assistant?

@jacobwod did you make any progress on this? I’m in the same situation as you.

Myit600 box does not have local control enabled, and I cant find how to enable it.

I’ve learned that you can telnet to it, using admin/admin and you can get to the kernel driver for the device and see it working.

If you run /mnt/sal6dg1/run_sal6dg1.sh you get some debug info, but not enough for me to get any further…

Did you get this working?

I want to create a differentiation helper so that when the humidity rises by a percentage, I can trigger the extractor fan. I have it working on an automation like this:

alias: HumidityGuest
description: ""
trigger:
  - platform: device
    device_id: a5de99cbea5f337859abe4d625663b2a
    domain: climate
    entity_id: 54c36930c3e4d73045e8d16a324e1d13
    type: current_humidity_changed
    above: 62
    for:
      hours: 0
      minutes: 0
      seconds: 3
condition: []
action:
  - type: turn_on
    device_id: d08a04c3a0d17b9cf8748b86c870d2e5
    entity_id: f61c060a60425e58ba720b55f8ccbfc7
    domain: switch
mode: single`Preformatted text`

But this is based on a fixed number rather than a change. I think I need to create a sensor based on the humidity first, but whenever I try to create a template for this, none of the code examples or your example parse.

I am a bit confused as some of the documentation seems out of date as well.

@Cyclobob, your automation settings look good for me. I think you can remove for seconds:3, because that automation should turn_on the switch once humidity has changed to some number above 62. Does it work for you?