Morning All,
im still quite new to home assistant! I have a three smart TRV’s I am wanting to convert the temperature status into a sensor so I can include it in some bedroom cards that I am making.
I have done the following code which is passing the developer check and restarting fine but I cannot see the sensors anywhere. Am I doing something wrong or looking in the wrong place?
Here is the code:
CONVERT TEMPERATURE OF ROOMS
Riley_temperature:
friendly_name: 'Rileys Room'
value_template: "{{ state_attr('climate.rileys_room', 'current_temperature') }}"
Bedroom_temperature:
friendly_name: 'Bedroom'
value_template: "{{ state_attr('climate.bedroom', 'current_temperature') }}"
Dressing_temperature:
friendly_name: 'Dressing Room'
value_template: "{{ state_attr('climate.dressing_room', 'current_temperature') }}"