110galreef
New member
OSC Code: PLEASE help me understand:
OSC xx:xx/yy:yy/zz:zz Then ON
....means off/on/off
Also the contoller starts each day new at 00:00 to figure it out..correct.
SO
[ATO_Allow]
OSC 000/20:00/160:00 Then ON
means basically that from:
00:00-00:20, 03:00-03:20, 06:00-06:20, 09:00-09:20, 12:00-12:20, 15:00-15:20, 18:00-18:20, 21:00-21:20, the outlet is ON
This is the code I have,
[ATO_Allow]
OSC 000/20:00/160:00 Then ON
If Time 10:00 to 22:00 Then OFF
00:00-00:20, 03:00-03:20, 06:00-06:20, 09:00-09:20, the outlet is ON.
Or does it calculate the time different due to this last stmt If Time.
I went down to look at my ATO this morning, and the ATO_Switch was calling for water (ON), yet it was 09:04 and wasn't adding water?
Here is the full code I ended up with:
[Sump_Low] Virtual Outlet
Set OFF
If Switch1 CLOSED Then ON {This float is CLOSED when DOWN} thus sump level too low, prevent pumps running dry
[ATO_Switch] Virtual Outlet
Set OFF
If Switch2 CLOSED Then ON {This float is CLOSED when DOWN} thus sump needs water
Defer 00:10 Then ON
[Sump_High]Virtual Outlet
Set OFF
If Switch3 OPEN Then ON{This float should be OPEN when UP} thus sump has too much water. Failsafe
[ATO_Allow] Virtual outlet to specify when to pump water. Allowed to pump for 20 mins every 3 hrs. But not between 10am-10pm
OSC 000/20:00/160:00 Then ON
If Time 10:00 to 22:00 Then OFF
[ATO] Physical outlet the ATO pump is plugged into
Fallback OFF
Set OFF
If Outlet ATO_Switch = ON Then ON
If Outlet ATO_Allow = OFF Then OFF
If Outlet Sump_High = ON Then OFF
set up email warning if sump level too LOW or too High
If Outlet Sump_Low = ON Then ON
If Outlet Sump_High = ON Then ON
OSC xx:xx/yy:yy/zz:zz Then ON
....means off/on/off
Also the contoller starts each day new at 00:00 to figure it out..correct.
SO
[ATO_Allow]
OSC 000/20:00/160:00 Then ON
means basically that from:
00:00-00:20, 03:00-03:20, 06:00-06:20, 09:00-09:20, 12:00-12:20, 15:00-15:20, 18:00-18:20, 21:00-21:20, the outlet is ON
This is the code I have,
[ATO_Allow]
OSC 000/20:00/160:00 Then ON
If Time 10:00 to 22:00 Then OFF
00:00-00:20, 03:00-03:20, 06:00-06:20, 09:00-09:20, the outlet is ON.
Or does it calculate the time different due to this last stmt If Time.
I went down to look at my ATO this morning, and the ATO_Switch was calling for water (ON), yet it was 09:04 and wasn't adding water?
Here is the full code I ended up with:
[Sump_Low] Virtual Outlet
Set OFF
If Switch1 CLOSED Then ON {This float is CLOSED when DOWN} thus sump level too low, prevent pumps running dry
[ATO_Switch] Virtual Outlet
Set OFF
If Switch2 CLOSED Then ON {This float is CLOSED when DOWN} thus sump needs water
Defer 00:10 Then ON
[Sump_High]Virtual Outlet
Set OFF
If Switch3 OPEN Then ON{This float should be OPEN when UP} thus sump has too much water. Failsafe
[ATO_Allow] Virtual outlet to specify when to pump water. Allowed to pump for 20 mins every 3 hrs. But not between 10am-10pm
OSC 000/20:00/160:00 Then ON
If Time 10:00 to 22:00 Then OFF
[ATO] Physical outlet the ATO pump is plugged into
Fallback OFF
Set OFF
If Outlet ATO_Switch = ON Then ON
If Outlet ATO_Allow = OFF Then OFF
If Outlet Sump_High = ON Then OFF
set up email warning if sump level too LOW or too High
If Outlet Sump_Low = ON Then ON
If Outlet Sump_High = ON Then ON
Last edited: