Posted: Monday Mar 30th, 2015 01:43 pm |
|
1st Post |
mikeinnc
Member
Joined: | Wednesday Mar 18th, 2015 |
Location: | Perth, Australia |
Posts: | 71 |
Status: |
Offline
|
back to top
|
I would like to perform an action based on the 'Entry Alert' alarm type status. If I put the following:
If EntryAlert <> 0 Then Do xxxxxEnd If
it doesn't work, even when I set alarm to Away, and then re-enter via front door. The status is obviously being recognised as I can see it in the event log:
03/29 19:21 Zone Activation # FrontDoor (1)03/29 19:21 Alarm Type # EntryAlert (10)03/29 19:22 Sign in - User # 1
but the response never works. If, however, I edit the response to read:
If EntryAlert = 0 Then Do xxxxxEnd If
and click on 'Execute Response' with Security Off, then it works!! So, it appears that the status 0 when the security is off is correctly read and acted upon, but the status <> 0 when there is an Entry Alert is NOT read, and hence not acted upon. Any assistance gratefully received!
|
Posted: Monday Mar 30th, 2015 02:10 pm |
|
2nd Post |
CytechMartin
Cytech
Joined: | Monday Oct 13th, 2014 |
Location: | |
Posts: | 47 |
Status: |
Offline
|
back to top
|
I think why it looks like does not work is because that it trigger the response first when you open the front door, then it will trigger entry alert. As it triggers the response first, so the first time you open the front door, it is not in alert state and definitely will not execute the programming in the if loop.
But anyway, it is not suggested to do it in Zone response. As entry alert is an alarm type, there is a easier way to go,you can go to Security Type Settings-->Alarm Types, then find out "entry alert", put your response there. So every time there is an entry alert, the response will be executed.
|
Posted: Monday Mar 30th, 2015 02:45 pm |
|
3rd Post |
mikeinnc
Member
Joined: | Wednesday Mar 18th, 2015 |
Location: | Perth, Australia |
Posts: | 71 |
Status: |
Offline
|
back to top
|
Thanks for the reply. I thought I'd actually tried that. To be sure I had, I did exactly as you suggested - put the response in the Alarm Type (and, of course, made sure it is removed from the door). But - it still doesn't work. It just looks like that status isn't read correctly - no matter where you put it!
|
Posted: Monday Mar 30th, 2015 03:09 pm |
|
4th Post |
slychiu
Administrator
Joined: | Saturday Apr 29th, 2006 |
Location: | Singapore |
Posts: | 5670 |
Status: |
Offline
|
back to top
|
Can you send your cclx file to support@cytech.biz so we can check
|
Posted: Tuesday Mar 31st, 2015 06:55 am |
|
5th Post |
slychiu
Administrator
Joined: | Saturday Apr 29th, 2006 |
Location: | Singapore |
Posts: | 5670 |
Status: |
Offline
|
back to top
|
When you put the Response in the Entry Alert Alarm Type, it means that the Entry Alert has triggered this alarm type
Your Response is
If Entry Alert <> 0
Then ...
EndIf
This is unnecessary as the alarm is triggered by Entry Alert
The If condition fails here and thus the following action is not performed
The If Entry Alert condition is actually mean for the next zone trigger to check if an entry alert has already occured
Removing "If Entry Alert " condition will fix your problem
|
Posted: Wednesday Sep 28th, 2016 11:28 pm |
|
6th Post |
CareyCorbin
SCAMMER!!!!!
Joined: | Wednesday Sep 28th, 2016 |
Location: | |
Posts: | 1 |
Status: |
Offline
|
back to top
|
Hi...i think it will not work is because that it trigger the response first when you open the front door, then it will trigger entry alert. As it triggers the response first, so the first time you open the front door, it is not in alert state and definitely will not execute the programming in the if loop.As entry alert is an alarm type, there is a easier way to go,you can go to Security Type Settings
|
Posted: Thursday Sep 29th, 2016 06:53 pm |
|
7th Post |
strickers
Member
Joined: | Sunday Jul 24th, 2011 |
Location: | |
Posts: | 92 |
Status: |
Offline
|
back to top
|
Is this spam? why did he just copy your answer from 2015?
|
Posted: Thursday Sep 29th, 2016 10:12 pm |
|
8th Post |
Posted: Friday Sep 30th, 2016 06:52 am |
|
9th Post |
slychiu
Administrator
Joined: | Saturday Apr 29th, 2006 |
Location: | Singapore |
Posts: | 5670 |
Status: |
Offline
|
back to top
|
Spammers are getting smarter
|
|