Hi Nolio,
I installed domoticz (very laggy) because is necessary register tags rfid.
I used this sequence on domoticz:
VERY IMPORTANT : YOU MUST ASSOCIATE THE FIRST GROUP TO THE 1. OTHERWISE NOTHING WORK ( 6 blink fast)
To program a new tag in the reader proceed as follow:
1. press the tamper switch on the reader and wait 5 seconds (to force the reader to wake up and sends its current code LIST)
2. go to the hardware setup of openzwave
3. select the tag reader from the node list.
4. from the 'Node MANAGEMENT' select the option 'START User Code Enrollment'
5. press the away button on the reader, when the red light is on, scan the tag.
6. the tag should now be included (you can follow this in the log screen)
7. press the tamper switch again to force the reader to send the current code
7. from the 'Node MANAGEMENT' select the option 'User Code Management'
8. you should now see the new tag
9. make a note which Code/Value belongs to which tag
After this you will find a sensor.alarm on 0 / 255 on Homgenie that react with tag batch. I created a c sharp code based from your and tag alarm arming is working:
When.ModuleParameterChanged( (module, parameter) =>
{
if (Modules.InDomain("HomeAutomation.ZWave").WithAddress("12").Get().Parameter("Sensor.Alarm").DecimalValue == 255) {
if ( Modules.WithName("Security Alarm System").IsOff ) {
Modules.WithName("Security Alarm System").On();
}
}else{
if ( Modules.WithName("Security Alarm System").IsOn ) {
Modules.WithName("Security Alarm System").Off();
}
}
return true;
});
Thank you for your code, I don't see the native script. Where they are?
Definitively homegenie is the best software for domotic, the problem is communitity that is a little bit poor. We will grow fast.
Bye