Replies: 4 comments 7 replies
-
HI @dionmes , Are you referring to a z-wave siren of sorts? or are you using your z-wave lights as a strobe of some kind? I would also update to 6.2.0 - this has some killer features that allows to streamline all your commands with incredible ease! |
Beta Was this translation helpful? Give feedback.
-
Hi Marcus, going to update this weekend. So the Alarm I am talking about is the specific Alarm Command Class (0x71). A node can generate such an alarm, such as a door sensor or motion sensor, and if I understand correctly this will be broadcasted. And nodes configured to receive this command class like lights and other will respond (like lights connected to a Fibaro zwave switch which will start blinking) . You can see this in the z-wave device configuration. |
Beta Was this translation helpful? Give feedback.
-
So, The CC 0x71 and the Reference to Alarm was deprecated by Zwave Alliance quite some time ago. There are 1000 ways to achieve what you want: Easy -> Not So Easy NOTE: I am creating the commands manually here, but the new CMD-Factory (6.2.0) - will construct them for you. Triggering:
{
"mode": "CCAPI",
"cc": "Notification",
"method": "sendReport",
"params": [
{
"notificationType": 7, /* Home Security */
"notificationEvent": 1 /* Intrusion */
}
]
}
Stopping: If Using 1: {
"mode": "CCAPI",
"cc": "Notification",
"method": "sendReport",
"params": [
{
"notificationType": 7, /* Home Security */
"notificationEvent": 0 /* Idle */
}
]
} I am using Home Security - but there are loads If Using 2: How I do it (I only have a siren): When my motion is triggered I send this to my siren {
"mode": "CCAPI",
"cc": "Notification",
"method": "sendReport",
"params": [
{
"notificationType": 7, /* Home Security */
"notificationEvent": 1 /* Intrusion */
}
]
} when I want to stop the alarm, I send this (but I could use idle in a notification - but have never really tried it with my siren). {
"mode": "CCAPI",
"cc": "Binary Switch",
"method": "set",
"params": [false]
} see attached notifications types and events SDS13713-Notification-Command-Class.xlsx What notification types/events you devices support will be in their manual, as well as there supported CC's obviously. |
Beta Was this translation helpful? Give feedback.
-
I just want to come in real quick and say: Use the command factory node All those complicated JSON messages that marcus loves so much... will be created for you!! |
Beta Was this translation helpful? Give feedback.
-
Contact Details (optional)
No response
How can we help?
First off, Awesome project. I first used the OpenZWave implementation but this is so much better.
So I have not used my zwave nodes like lights, dimmers etc. as alarm nodes. This because I do not know how to cancel a wave alarm. I know it is possible for zwave nodes to send and/or receive an alarm cancellation, but if I want to create my own manual switch for this (for example via the node-red Dashboard UI), I do not know what type of message to sent.
Anyone got any ideas on this ?
Any more details?
A node-red Home Automation implementation using z-wave nodes, Phillips Hue, wifi devices and media equipment. Dashboard UI and Homekit used to control.
Version
6.1.1
Node-RED Version
2.0.6
What hardware are you using?
Raspberry Pi
Any code to add?
Beta Was this translation helpful? Give feedback.
All reactions