Graph for temperature and humidity of an thermostat

Hello everyone,
I am still new to home assistant and have already successfully integrated all my components. :slightly_smiling_face: Now I am working on building a nice dashboard. First of all, I would like to display the log of the temperatures and humidities of all rooms. I have installed underfloor heating and Bosch 24V thermostats, which I have already been able to integrate.

hvac_modes:
  - auto
  - heat
  - "off"
min_temp: 5
max_temp: 30
target_temp_step: 0.5
preset_modes:
  - none
  - eco
current_temperature: 19
temperature: 20
preset_mode: none
friendly_name: Room Climate Bad Kinder
supported_features: 17

Everything ist working fine with type thermostat. But how can i access the current temperature and humidity to show it with the sensor card?

Many thanks in advance!
Benny

You need to pull the Value out of the climate

this is what i did

    - name: cupboard heater tempature
      unique_id: 395c9b24-1893-4b0f-bb4d-0194b05562bb
      state: >
        {{ state_attr('climate.cupboard_heater', 'temperature') }}

remeber Developer tools is your friend

1 Like

Thank you very much, myle! That really helped me a lot. :+1: