Netatmo - Thermostat - Historical Graphic Bars with Heating Power values

Does anybody know or can support with displaying historical graphic with bars for Netatmo Thermostat Device? Especially Heating Power values and how to get them from Netatmo Thermostat?

I would like to have same graphics in Home Assistant as they are in Netatmo Cloud app.


I found only the following data that can received from Netatmo device:

hvac_modes:
  - auto
  - heat
min_temp: 7
max_temp: 30
target_temp_step: 0.5
preset_modes:
  - away
  - boost
  - Frost Guard
  - Schedule
current_temperature: 22.5
temperature: 21.5
hvac_action: idle
preset_mode: Schedule
attribution: Data provided by Netatmo
battery_level: full
heating_power_request: 0
selected_schedule: Standard
friendly_name: Netatmo Bedroom Parents
icon: mdi:radiator
supported_features: 17

Hello,

there is no “inbuild” way to show graph like that. But here it is how i am doing it .

  1. i created binary sensor in configuration yaml
template:
  - binary_sensor:
      - name: valve1_state
        state: "{{ is_state_attr('climate.netatmo_valve_1', 'hvac_action', 'heating') }}"

Please replace climate.netatmo_valve_1 with your entity.

by this, you will have entity which will have data, you can use to create same graph…

cheers :slight_smile: