Generic hygrostat - multiple sensors

Hello. Newcoming here. First time I am trying to write a custom configuration (generic_hygrostat.humidifier)

Sometimes the specified sensor gives me this :

Unable to update from sensor: could not convert string to float: ‘Stalled’

And the dehumidifier stops.

Is possibile, instead of the sensor, specify a custom combination of sensor? My Logic would be:

sensor: max( sensor_bathroom, sensor_bedroom, sensor_dehumi)

so It may also filter out the bad value?

It’s possible to write directly in configuration.yaml this? Thanks.

You can use the min/max integration to create this sensor then feed that to your hygrostat.

1 Like

Thanks a lot. it works very well.
Another question:is it possibile to customize some values not included in the ui? For example i tried these line but it does not work

generic_hygrostat:
    wet_tolerance: "{{ states('input_number.wet_tolerance') | int }}"

No. Integration configuration options only support templates if they specifically state that they do in the documentation. Most do not.

https://www.home-assistant.io/integrations/generic_hygrostat/#wet_tolerance

1 Like