After long searching, i found a working keypad for my setup.
https://nl.aliexpress.com/item/40000902 ... 4c4dlQlwSf
Very cheap, battery powered and 433mhz.
So u can use multiple of these panels in one setup
RFID:
You cannot arm/disarm with RFID. Only disarm with RFID
After using it, domoticz automatically detects 4 devices:
Arm
Disarm
Home
Tamper
SOS is not working
This is the code I use to arm / disarm my alarm with the panel:
- Spoiler: show
-
commandArray = {}
if uservariables['Alarm_Time_Unarm'] ~= otherdevices_lastupdate['433Disarm'] then
commandArray[#commandArray + 1]={['Variable:Alarm_Time_Unarm'] = tostring(otherdevices_lastupdate['433Disarm'])}
commandArray[#commandArray + 1]={['Alarmsysteem']='Off'}
print('Alarm Disarmed')
end
if uservariables['Alarm_Time_Arm'] ~= otherdevices_lastupdate['433Arm'] then
commandArray[#commandArray + 1]={['Variable:Alarm_Time_Arm'] = tostring (otherdevices_lastupdate['433Arm'])}
commandArray[#commandArray + 1]={['Alarmsysteem']='On'}
print('Alarm Armed')
end
if uservariables['Alarm_Time_Tamper'] ~= otherdevices_lastupdate['433Tamper'] then
commandArray[#commandArray + 1]={['Variable:Alarm_Time_Tamper'] = tostring (otherdevices_lastupdate['433Tamper'])}
print('Alarm Tampered With')
end
return commandArray