pasch
(Pasch)
November 28, 2023, 8:40am
1
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.
tom_l
November 28, 2023, 8:55am
2
You can use the min/max integration to create this sensor then feed that to your hygrostat.
1 Like
pasch
(Pasch)
December 7, 2023, 12:37am
3
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 }}"
tom_l
December 7, 2023, 12:42am
4
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