Somebody check my Apex Kalk Pump Coding

Wrasse-cal

Well-Known Member
View Badges
Joined
Nov 21, 2017
Messages
759
Reaction score
615
Rating - 0%
0   0   0
Can someone please check my apex coding? I'm not really savvy at this and cobbled this all together looking at exemplars.

My intention is:
  1. To have VO_KALK_MAIN run from 9:30 am to 2:15 am with a 9:45 on/5:15 off oscillate.
  2. To have VO_KALK_LOW run from 2:15 am to 9:30 am with a 9:15 on/5:45 off oscillate.
  3. I test my alkalinity via my alkatronic, so if my alkalinity goes above 8.62, I want to stop dosing kalk and turn my pump off.
  4. If my pH gets too high (8.6) I also want the pump to turn off.

VO_KALK_MAIN

Fallback OFF
Set OFF
OSC 000:00/009:45/005:15 Then ON
If Time 02:15 to 09:30 Then OFF
If ALK > 8.62 Then OFF
If pH_SMP > 8.60 Then OFF
Defer 000:30 Then ON
Defer 000:30 Then OFF


VO_KALK_LOW

Fallback OFF
Set OFF
OSC 000:00/009:15/005:45 Then ON
If Time 09:30 to 02:15 Then OFF
If ALK > 8.62 Then OFF
If pH_SMP > 8.60 Then OFF
Defer 000:30 Then ON
Defer 000:30 Then OFF

KALK_PUMP

Fallback OFF
Set OFF
If Output VO_KALK_MAIN = ON Then ON
If Output VO_KALK_LOW = ON Then ON
 
Back
Top