I set up some associations for the buttons on my Aeotec Quad Minimote using the Node group associations on the Z-wave configuration page. However, I decided I would rather use Zwave events with Home Assistant so the buttons can trigger scenes instead. So, I need to first remove the associations. I’m trying to do this via the developer tools call service page, specifically: zwave.change_association
with the following service data:
association: remove
node_id: 11 (this is the ID of the nanomote)
target_node_id: 7 (this is the ID of the node the button is linked to)
group: 7 (the button group)
I see the following in the open zwave log when I call the service:
2020-06-07 15:34:06.505 Info, Node011, Association::Remove - Removing node 7 from group 7 of node 11
2020-06-07 15:34:06.505 Detail,
2020-06-07 15:34:06.506 Detail, Node011, Queuing (WakeUp) AssociationCmd_Remove (Node=11): 0x01, 0x0b, 0x00, 0x13, 0x0b, 0x04, 0x85, 0x04, 0x07, 0x07, 0x25, 0xf6, 0xba
2020-06-07 15:34:06.506 Info, Node011, Get Associations for group 7 of node 11
2020-06-07 15:34:06.506 Detail,
2020-06-07 15:34:06.506 Detail, Node011, Queuing (WakeUp) AssociationCmd_Get (Node=11): 0x01, 0x0a, 0x00, 0x13, 0x0b, 0x03, 0x85, 0x02, 0x07, 0x25, 0xf7, 0xbc
Then, when I wake up the minimote by pressing a button, I see the following in the log:
2020-06-07 15:34:50.089 Detail, Node011, Received: 0x01, 0x09, 0x00, 0x04, 0x00, 0x0b, 0x03, 0x80, 0x03, 0x64, 0x1d
2020-06-07 15:34:50.089 Detail,
2020-06-07 15:34:50.089 Info, Node011, Received Battery report from node 11: level=100
2020-06-07 15:34:50.089 Detail, Node011, Refreshed Value: old value=100, new value=100, type=byte
2020-06-07 15:34:50.090 Detail, Node011, Changes to this value are not verified
2020-06-07 15:34:50.090 Detail, Node011, Notification: ValueChanged
2020-06-07 15:34:50.112 Detail, Node011, Received: 0x01, 0x0b, 0x00, 0x04, 0x00, 0x0b, 0x05, 0x5b, 0x03, 0x85, 0x80, 0x01, 0xa2
2020-06-07 15:34:50.113 Detail,
2020-06-07 15:34:50.113 Info, Node011, Received Central Scene set from node 11: scene id=1 in 7680 seconds. Sending event notification.
2020-06-07 15:34:50.113 Detail, Node011, Refreshed Value: old value=7680, new value=7680, type=int
2020-06-07 15:34:50.113 Detail, Node011, Changes to this value are not verified
2020-06-07 15:34:50.113 Detail, Node011, Notification: ValueChanged
It does not look like it’s doing anything with the queued command. What should I do?