Dear Forum,
First post from me, new to the Home Automation arena
With the Vera controller you can use the following codes to interact with the Zipabox Siren:
Emergency - luup.call_action('urn:micasaverde-com:serviceId:ZWaveNetwork1','SendData',{Node='24',Data='0x71 0x5 0x0 0x0 0x0 0x0 0x7 0x1 0x0 0x0'},1)
Fire - luup.call_action('urn:micasaverde-com:serviceId:ZWaveNetwork1','SendData',{Node='24',Data='0x71 0x5 0x0 0x0 0x0 0x0 0xA 0x2 0x0 0x0'},1)
Ambulance - luup.call_action('urn:micasaverde-com:serviceId:ZWaveNetwork1','SendData',{Node='24',Data='0x71 0x5 0x0 0x0 0x0 0x0 0xA 0x3 0x0 0x0'},1)
Police - luup.call_action('urn:micasaverde-com:serviceId:ZWaveNetwork1','SendData',{Node='24',Data='0x71 0x5 0x0 0x0 0x0 0x0 0xA 0x1 0x0 0x0'},1)
Door Chime - luup.call_action('urn:micasaverde-com:serviceId:ZWaveNetwork1','SendData',{Node='24',Data='0x71 0x5 0x0 0x0 0x0 0x0 0x6 0x16 0x0 0x0'},1)
Beep Beep - luup.call_action('urn:micasaverde-com:serviceId:ZWaveNetwork1','SendData',{Node='24',Data='0x71 0x5 0x0 0x0 0x0 0x0 0xA 0x5 0x0 0x0'},1)
Stop - luup.call_action('urn:micasaverde-com:serviceId:ZWaveNetwork1','SendData',{Node='24',Data='0x25 0x1 0x0'},1)
And the following code for a series of beeps for door entry etc.:
luup.call_delay('beep_siren’, 5)
luup.call_delay('beep_siren’, 10)
luup.call_delay('beep_siren’, 15)
luup.call_delay('beep_siren’, 20)
luup.call_delay('beep_siren’, 25)
function beep_siren ()
luup.call_action('urn:micasaverde-com:serviceId:ZWaveNetwork1','SendData',{Node='24',Data='0x71 0x5 0x0 0x0 0x0 0x0 0xA 0x5 0x0 0x0'},1)
end
Would any of you super people know how to make this work for the HC2 please?
Or, perhaps I am not installing correctly and there is a more simpler/intelligent way that I should be do it??
Thanks in advance,
Daniel