See Netatmo radiator valves position information

Hi!

I was trying to find out a way to see the current radiator valve position(s) but it seems there is just no information around.

After fiddling around a bit, I opened one of the climate-entities and there is an attribute “heating_power_request” and there you are! As far as I can see, this corresponds directly to the valve position(s) in my rooms.

Here an example with the temperature and the valve position values:

This is the entity seen from the “Developer tools”-section:

To “extract” this value as a seperate sensor I created a template-sensor for each room (here an excerpt from my configuration.yaml):

sensor:
- platform: template
  sensors:
    climate_office_valveposition:
      friendly_name_template: "Valve Position Office"
      value_template: '{{ states.climate.office.attributes["heating_power_request"] | round(1) | float }}'
      unit_of_measurement: "%"

Of course you can also simply add a “Helper” template-sensor and avoid the configuration.yaml:

Hope this helps :slight_smile: