PM1 with Breakout box NOT sending alerts or emails, not login the errors either in apex alerts

14 foot reef

Valuable Member
View Badges
Joined
Feb 22, 2018
Messages
2,210
Reaction score
3,537
Location
Apex NC
Rating - 0%
0   0   0
PM1 with Breakout box NOT sending alerts or emails, not login the errors either in apex alerts

The functions of the breakout box switches are all working. The six switches are overflow detectors for 3 separate tanks. I like redundancy, 2 set at different levels in case one fails, the other should work. ( In Theory )
smile2.png


They all 6 shut the return pumps off and when you release the switch they turn them back on. The fusion app of course is a delay but you do see the slider go from closed to open.

The problem is there is no fusion alert, no email and no text.

Other alerts work, like salt, PH, temp, trident results, flow meter alerts. Just the newly added PM1 and breakout box is not sending alerts or text/email messages.

Here is my code for 6 switched on PM1_13

The Switches are renamed to to HW13_1-6 HW stands for High Water

Set OFF
If HW13_1 OPEN Then ON
If HW13_2 OPEN Then ON
If HW13_3 OPEN Then ON
If HW13_4 OPEN Then ON
If HW13_5 OPEN Then ON
If HW13_6 OPEN Then ON


Then I added these 2 last lines of code to see if the main EB832 running the pumps when off would send an alert. But that didn't work either.

Set OFF
If HW13_1 OPEN Then ON
If HW13_2 OPEN Then ON
If HW13_3 OPEN Then ON
If HW13_4 OPEN Then ON
If HW13_5 OPEN Then ON
If HW13_6 OPEN Then ON
If Output AllTanks = OFF Then ON
If Output ReefOnly = OFF Then ON

Thanks in advance for any advice and help.
 
OP
OP
14 foot reef

14 foot reef

Valuable Member
View Badges
Joined
Feb 22, 2018
Messages
2,210
Reaction score
3,537
Location
Apex NC
Rating - 0%
0   0   0
PM1 with Breakout box NOT sending alerts or emails, not login the errors either in apex alerts

The functions of the breakout box switches are all working. The six switches are overflow detectors for 3 separate tanks. I like redundancy, 2 set at different levels in case one fails, the other should work. ( In Theory )
smile2.png


They all 6 shut the return pumps off and when you release the switch they turn them back on. The fusion app of course is a delay but you do see the slider go from closed to open.

The problem is there is no fusion alert, no email and no text.

Other alerts work, like salt, PH, temp, trident results, flow meter alerts. Just the newly added PM1 and breakout box is not sending alerts or text/email messages.

Here is my code for 6 switched on PM1_13

The Switches are renamed to to HW13_1-6 HW stands for High Water

Set OFF
If HW13_1 OPEN Then ON
If HW13_2 OPEN Then ON
If HW13_3 OPEN Then ON
If HW13_4 OPEN Then ON
If HW13_5 OPEN Then ON
If HW13_6 OPEN Then ON


Then I added these 2 last lines of code to see if the main EB832 running the pumps when off would send an alert. But that didn't work either.

Set OFF
If HW13_1 OPEN Then ON
If HW13_2 OPEN Then ON
If HW13_3 OPEN Then ON
If HW13_4 OPEN Then ON
If HW13_5 OPEN Then ON
If HW13_6 OPEN Then ON
If Output AllTanks = OFF Then ON
If Output ReefOnly = OFF Then ON

Thanks in advance for any advice and help.
Thanks to Neptune Forum this fixed my issue @SuncrestReef - THanks


OK, let's start with the basics. Please follow these steps carefully:

1. Go to your list of Inputs, and for any Input that has alarms set, take note of those alarm settings, then set them to Never alarm and save the changes.
2. Go to your EmailAlm_I5 output and copy/paste all the current programming into a separate document (like Notepad or Word) for future reference.
3. Wipe out all the programming under EMailAlm_I5 and replace it with this:

Set OFF
If LDRO CLOSED Then ON
If LDsump CLOSED Then ON
If LDtank CLOSED Then ON

4. Once the above steps are complete, verify there is no current alarm active. You can check the Alarm log for this.
5. Now, test each of your leak sensors and wait for a notification to arrive.
 

Reefing threads: Do you wear gear from reef brands?

  • I wear reef gear everywhere.

    Votes: 27 15.5%
  • I wear reef gear primarily at fish events and my LFS.

    Votes: 11 6.3%
  • I wear reef gear primarily for water changes and tank maintenance.

    Votes: 1 0.6%
  • I wear reef gear primarily to relax where I live.

    Votes: 24 13.8%
  • I don’t wear gear from reef brands.

    Votes: 99 56.9%
  • Other.

    Votes: 12 6.9%
Back
Top