Hi, i have a problem with Smart wifi Thermostat, the scale of temperature in app tuya is set on °C and in home assistant integration in °F, and not there is no possibility to change it like in the sensors, with the old version this bug was not present.
You could create a sensor that converts the value from ºC to ºF. Place this in your config file:
sensor:
- platform: template
sensors:
sensor_tuya_thermostat_temp_C:
entity_id:
- sensor.tuya_thermostat
unit_of_measurement: '°F'
value_template: >
{{((states('sensor.tuya_thermostat')* 9 / 5)+ 32)|round(1)}}
sensor.tuya_thermostat is your current tuya sensor, and then,
sensor_tuya_thermostat_temp_C is the converted value sensor.
Not a FR, moved.