Looked for options to only display “Upstairs current temperature” attribute but “Upstairs target temperature” is also being displayed. Is there code to only display one attribute on a History Graph card?
I think this is because you are using the entity climate.upstairs
Can you go to Dev tools ➜ states, type in climate.upstairs and show what is displayed?
…I’m looking for an attribute that may be called something like current temperature.
We can then create a new sensor entity that shows this attribute. It will look something like:
template:
- sensor:
- name: "Hive upstairs current temp"
unique_id: hive_upstairs_current_temp
device_class: temperature
unit_of_measurement: °C
state: "{{ state_attr('climate.upstairs','current_temperature') }}"
state_class: measurement
you would then put this entity into your history-graph: