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:
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?
After last update of HA to 2025 my Salus IT600 integration is not working anymore. All thermostats are showing unavailable .
Any idea how we can sort this out?
Hello, original repo owner is not responding, just use this guide made by cflansbaum to change repo with one that was updated.
Under the HACS Integration page, remove the current Salus repository (you can choose the Ignore option - i.e. not removing your integration setup under the Devices and Services page. Restart HA.
After step 2 - click on the 3 dots to the right of this entry and click download (I ALWAYS forget this step and wonder why the repository didn’t load…) Restart HA
Go back into your Devices and Services page and confirm everything is as it should be
Hello, first, I am a newbee in HomeAssistant, so do not wonder when I ask stupid questions…
My floor - heating is based on salus UGE600 and 8 x Salus Quantum SQ610.
Now I installed the salus iT600 repository via HACS. I got the connection and can find all my Quantum devices in Home Assistant.
But I have the problem that when I want to change something via dashboard, for instance I want to change from Modus “auto” to “off”, I have to try it several times until the device really turns off.
Then I changed the repository in HACS, how Virgil descibes up, but there is no change, the problem with several attempts is still there.
Does anyone have an idea ?
And there is no direct access to temperature and humidity sensor values, is it possible to get them via entity parameters ?
I don’t think you have a problem with the integration, it’s just a delay, for a faster response you can change the synchronization time, that should help you.
in custom_components\salus\climate.py, modify this line (seconds=30) to (seconds=1).
coordinator = DataUpdateCoordinator(
hass,
_LOGGER,
# Name of the data. For logging purposes.
name="sensor",
update_method=async_update_data,
# Polling interval. Will only be polled if there are subscribers.
update_interval=timedelta(seconds=1),
)
Thank you !
I changed the value in the file, then made a restart but there is still the same problem. It works when turning on to “heating” or “auto”, but when I want to turn “off”, it needs sometimes 2 or 3 trials.
And there is no direct access to temperature and humidity sensor values, is it possible to get them via entity parameters ?