Wall mote set values not working #161
Replies: 4 comments 20 replies
-
Morning @Robbie1983, Are the values changing when modifying them within the UI tab? |
Beta Was this translation helpful? Give feedback.
-
Just noticed its a battery operated device, config params will get applied when the device awakens on a schedule, or you wake the device up - using a combination of button presses of sorts (user manual). commands will be queued for sleeping devices, and will get sent when they wake up. from the manual of wall mote. Battery operated devices, also wake up on a schedule - if they support Wake UP scheduling - you can change its interval on the UI, but it will need to be awake to receive 😆 |
Beta Was this translation helpful? Give feedback.
-
Hi @Robbie1983 - Sure no problem. first here is the config file for the wallmote (it might not be the exact wallmote version - which one do you have?) https://devices.zwave-js.io/?jumpTo=0x0086:0x0002:0x0081:0.0 Parameter 3 mentions slide function |
Beta Was this translation helpful? Give feedback.
-
If you want to keep you device awake. let Message = {
payload: {
mode: "ControllerAPI",
method: "keepNodeAwake",
params: [<NodeID>, true]
}
}
return Message
|
Beta Was this translation helpful? Give feedback.
-
Hi everyone,
I am slowly moving from wired (self made mqtt based domitica) to zwave based commercial switches as the wife wants a more stylish looking switch assembly. However, I am struggling a little with the configuration of the different switches. For example a aeotec wallmote.
The wallmote is succesfully added and working, sending notifications and also the values are accessible for reading.
However, I am unable to set the configuration parameters both through CCapi or ValueApi.
For example the touch sound should be adjustable trough the "configuration" parameter=1.
however sending:
let Message = {
payload: {
mode: "CCAPI",
node: 5,
cc: "Configuration",
method: "set",
params: [1,0,1]
}
}
return Message
Will not set the touch sound to disable. Also the other configuration parameters seem not to be editable.
Any help is appreciated......
Beta Was this translation helpful? Give feedback.
All reactions