How to configure automation with a z-wave radiator head (I have a very precise question)?

Hello.

I have a thermostat for the Z-Wave Danfoss LC-13 radiator, controlled with the help of AEOTEC Z-Stick Gen5 USB.

The Aeotec and Danfoss configuration went correctly.

image

Danfoss support z-wave command:

I want to create an automation that, for example, at 10:00 am will set the temperature I want. While searching for information on the Internet and using the HA visual editor, I wrote the following:

alias: "!!! Danfoss Test"
description: ""
trigger:
  - platform: time
    at: "10:30:00"
condition: []
action:
  - device_id: 99fb7e661c98848d56e3aeef4013156b
    domain: climate
    entity_id: climate.living_connect_z_thermostat
    type: set_hvac_mode
    hvac_mode: heat
  - device_id: 99fb7e661c98848d56e3aeef4013156b
    domain: zwave_js
    type: set_value
    command_class: 67
    value: "20"
    property: ""
mode: single

Unfortunately, nowhere I can find what to write in the property: " "

I try to solve the problem the second day and I am already crazy about it.

Can I ask you for help?

Thank you in advance.

Try and use the call service services instead. Using device is not optimal.

Visit the developer tools → services, it usually have examples you can use and adapt then just copy paste in to an automation

2 Likes

You have a heart of gold!
As you wrote, the solution is very simple and my anguish is over!

Both in visual mode and YAML !

YAML:

alias: Danfoss Test
description: ""
trigger:
  - platform: time
    at: "14:00:00"
condition: []
action:
  - service: climate.set_temperature
    data:
      temperature: 20
      hvac_mode: heat
    target:
      device_id: 99fb7e661c98848d56e3aeef4013156b
      entity_id: climate.living_connect_z_thermostat
mode: single