Apex email warnings

cali9dub

Member
Anyone care to share their programming language for email alerts. Looking for ideas of what to be alerted to. I assume temp, power outage or pump fails, high or low ph, light failure??? What are you guys putting in to get correct alerts? Thanks !!
 
Sure; it's on my website but here...

Set OFF
If TankTmp > 79.0 Then ON
If TankTmp < 75.0 Then ON
If SumpTmp > 79.0 Then ON
If SumpTmp < 75.0 Then ON
If Power EB8_3 Off 000 Then ON
If Power EB8_4 Off 000 Then ON
If Power EB4_5 Off 000 Then ON
If Power EB8_6 Off 000 Then ON
If Power EB8_7 Off 000 Then ON
If Outlet SumpHigh = ON Then ON
If Outlet SumpLow = ON Then ON
If Outlet WaterBug = ON Then ON
If PF601pH > 06.50 Then ON
If Outlet FreshSaltLow = ON Then ON
Defer 001:00 Then OFF
 
I add a daily alarm/network test:

If Time 09:00 to 09:33 Then ON

There's too many things to go wrong - router, DNS forwarding, network settings, etc. Code alone means very little if you don't know if your email alarm system system works, or not, until you need.
 
I add a daily alarm/network test:

If Time 09:00 to 09:33 Then ON

There's too many things to go wrong - router, DNS forwarding, network settings, etc. Code alone means very little if you don't know if your email alarm system system works, or not, until you need.

I think I'm going to have to add that idea to mine; I just noticed this morning that my apex isn't currently accessible (stupid wireless bridge needs to be reset again)
 
Back
Top