Page 1 of 1

Chuango H4 read status (Arm,Disarmed,Home)

Posted: Wednesday 09 January 2019 5:18
by mf76130
Hi Guys,

I am brand new to the Domoticz and RFLink stuff.
I managed to solder my 433,92MHZ Arduino device and now receive a lot of my devices in the house :-)
As you can read from the header i have a Chuango H4 alarm system and i use some Doorsensors and some firedetectors. I can get the infos from the sensors and know, that i only get a ON signal, wether if its opened or closed.
What i am looking for now is, how to get the status of my alarmsystem? I would like to see if it is armed, disarmed or in home mode.
Why do i want to know it? Cause i want to only send an alert using domoticz when the system is not in disarmed mode.

Thanks for your support
michael

Re: Chuango H4 read status (Arm,Disarmed,Home)

Posted: Friday 06 August 2021 14:52
by jurgend
mf76130 wrote: Wednesday 09 January 2019 5:18 Hi Guys,

I am brand new to the Domoticz and RFLink stuff.
I managed to solder my 433,92MHZ Arduino device and now receive a lot of my devices in the house :-)
As you can read from the header i have a Chuango H4 alarm system and i use some Doorsensors and some firedetectors. I can get the infos from the sensors and know, that i only get a ON signal, wether if its opened or closed.
What i am looking for now is, how to get the status of my alarmsystem? I would like to see if it is armed, disarmed or in home mode.
Why do i want to know it? Cause i want to only send an alert using domoticz when the system is not in disarmed mode.

Thanks for your support
michael
Hi, I have the eTiger (they are the same as Chuango and Eminent) did you get this working yet?

Re: Chuango H4 read status (Arm,Disarmed,Home)

Posted: Friday 06 August 2021 15:25
by dheuts
I have a Chuango G5 alarm system. It's the same as Etiger, Eminent EM8610, Konig SAS-ALARM300 etc.
Also 433MHz and with RFXCom, I am able to get the status of the alarm base. It will show disarmed/armed/armed home.

I use this script to switch the built-in DOmoticz alarm statuses:

Code: Select all

commandArray = {}
 if (devicechanged['Gang Meterkast Alarmcentrale'] == 'Arm Away') then
    print('AlarmPanel Arm Away')
    commandArray['Domoticz Bedienpaneel Alarm']='Arm Away'
 end
 if (devicechanged['Gang Meterkast Alarmcentrale'] == 'Disarm') then
    print('AlarmPanel Disarming')
    commandArray['Domoticz Bedienpaneel Alarm']='Disarm'
end
 if (devicechanged['Gang Meterkast Alarmcentrale'] == 'Arm Home') then
    print('AlarmPanel Arm Home')
    commandArray['Domoticz Bedienpaneel Alarm']='Arm Home'
end
return commandArray