Pause Apex Alarm?

  • Thread starter Thread starter CMO
  • Start date Start date
  • Tagged users None

Users Who Are Viewing This Thread (Total: 0, Members: 0, Guests: 0)

CMO

Valuable Member
View Badges
Joined
Jul 13, 2017
Messages
1,685
Reaction score
1,830
Location
Nevada City
Rating - 0%
0   0   0
Is there anyway to pause an alarm? For example, when my ATO level sensor goes off it takes me a day or so to get around to refilling it and during this time I get constant alerts. Is there a way to pause the alarm for specific events like this?
 
I would it if there was a convenient way to ignore the alarm trip for a number of hours. I don’t think there is. I manually turn the alarm off in Fusion until I get around to correcting the thing causing the alarm.
 
I would it if there was a convenient way to ignore the alarm trip for a number of hours. I don’t think there is. I manually turn the alarm off in Fusion until I get around to correcting the thing causing the alarm.

How do you manually turn it off in fusion? Thanks
 
How do you manually turn it off in fusion? Thanks

On your Fusion page you have something like the attached image. Move the alarm sliders to off and that will stop audio warnings, emails, texts.

7BEDB3E9-039E-49D5-A4C4-230CB29442FF.png
 
On your Fusion page you have something like the attached image. Move the alarm sliders to off and that will stop audio warnings, emails, texts.

7BEDB3E9-039E-49D5-A4C4-230CB29442FF.png

Ahhhh. Now that you say that it's pretty obvious but I totally overlooked just sliding it to off. Thank you!
 
Turning off the alarm output is not a good thing to do. I'll go so far as to say it's a really BAD thing. A good way to handle non-critical alarm conditions is by use of a virtual output. Here is an example for low ATO reservoir:

[ReservoirLow] (a virtual output)
Set OFF
If ResLow OPEN Then ON
If Time 08:01 to 19:59 Then OFF
If Time 20:01 to 07:59 Then OFF​

Then test the state of that virtual outlet in the email program:

[EmailAlarm]
{your existing programming}
If Output ReservoirLow = ON Then ON​

This assumes that the float switch or optical sensor named ResLow is OPEN when the water level in the reservoir is low. If the water level is low, the VO will only turn on for 1 minute at exactly 8AM and/or 8PM, thereby also only turning on the alarm output for 1 minute twice a day.

Voila! You get a reminder that the ATO reservoir needs to be refilled just twice a day, and at convenient times of your choosing. And this also eliminates the big problem of forgetting to slide the email tile slider from OFF to AUTO. Even more importantly, other much more critical alarms can still come through.
 
Turning off the alarm output is not a good thing to do. I'll go so far as to say it's a really BAD thing. A good way to handle non-critical alarm conditions is by use of a virtual output. Here is an example for low ATO reservoir:

[ReservoirLow] (a virtual output)
Set OFF
If ResLow OPEN Then ON
If Time 08:01 to 19:59 Then OFF
If Time 20:01 to 07:59 Then OFF​

Then test the state of that virtual outlet in the email program:

[EmailAlarm]
{your existing programming}
If Output ReservoirLow = ON Then ON​

This assumes that the float switch or optical sensor named ResLow is OPEN when the water level in the reservoir is low. If the water level is low, the VO will only turn on for 1 minute at exactly 8AM and/or 8PM, thereby also only turning on the alarm output for 1 minute twice a day.

Voila! You get a reminder that the ATO reservoir needs to be refilled just twice a day, and at convenient times of your choosing. And this also eliminates the big problem of forgetting to slide the email tile slider from OFF to AUTO. Even more importantly, other much more critical alarms can still come through.

Even better. I'll give this a go. Thank you!
 

IF YOU HAD TO TAKE A REEFING EXAM, WOULD YOU PASS?

  • Yes!

    Votes: 32 45.7%
  • Not yet, but I have one that I want to buy in mind!

    Votes: 9 12.9%
  • No.

    Votes: 26 37.1%
  • Other (please explain).

    Votes: 3 4.3%
Back
Top