Hi folks,
I am using Generic Thermostat platform with 2 DS18B20 sensors, driving 2 switches and everything is working fine.
Home Assistant ver. is 0.88.2
I was just wondering if it is possibe to increase the precision of the Target Temperature.
I mean: I can set the Target Temp at any value in the configuration.yaml file (i.e. 19.7°C) but from the UI I can set a minimum of 0.5°C precision (regardless of precision=0.1 in configuration.yaml), that means I can set 19.5, 20, 20.5, … regardless of the valut set in the configuration.yaml
Is there any way to set it via UI (circolar slider) at , let’ say, 19.8 or 20.2, that is with a precsion of 0.2 °C?
Here’s the code I use:
climate:
- platform: generic_thermostat
name: Piano Terra
heater: switch.relay_1_pompa_pt
target_sensor: sensor.temp_pt_temperature
min_temp: 5
max_temp: 30
ac_mode: False
target_temp: 19.8
min_cycle_duration:
minutes: 5
cold_tolerance: 0.1
initial_operation_mode: "auto"
away_temp: 16
precision: 0.1
Thanks for your support
Andrea