I have an automation like this:
- alias: Set Doorbell Volume to 1
trigger:
- platform: state
entity_id: input_select.doorbell_volume
to: '1 - Quietest'
action:
service: zwave.set_config_parameter
data_template: {
"node_id": 20,
"parameter": 8,
"value": 1
}
- alias: Set Doorbell Volume to 2
trigger:
- platform: state
entity_id: input_select.doorbell_volume
to: '2'
action:
service: zwave.set_config_parameter
data_template: {
"node_id": 20,
"parameter": 8,
"value": 2
}
This is how I am setting default parameters for my ZW056 Doorbell from the HA webpage using an input select. Works great, but this is a plug in device and unsure how responsive any battery powered device would be.
Hope it helps!