Programming help

simon.007

New member
Will this work if I want to OSC them and turn them off after certain time?

If Time > 07:50 Then PM1 ON ; Turn on the pump after 7:50am to OSC it

OSC 060/030 ON/OFF Then PM1 ON

If Time > 17:30 Then PM1 OFF; turn off the pump after 5:30pm

Also to add or dump h2o if the switches are on:

If Switch1 OPEN Then SW1 ON
If Switch1 CLOSED Then SW1 OFF
If Switch1 CLOSED Then ADD ON
If Switch1 OPEN Then ADD OFF

If Switch2 OPEN Then SW2 ON
If Switch2 OPEN Then DUM ON
If Switch2 CLOSED Then SW2 OFF
If Switch2 CLOSED Then DUM OFF

Thanks again!
 
For the pump to only operate during the day do something like this:

If Time > 07:50 Then DAY ON
If Time > 17:30 Then DAY OFF
OSC 060/030 ON/OFF Then PM1 ON
If Timer DAY = OFF Then PM1 OFF

The switch statements look OK.

Curt
 
Back
Top