PDA

View Full Version : Programming help---on for 10 min every hour


MJAnderson
10/06/2006, 07:40 AM
I'm trying to set up my ATO pump to only pump for 10 minutes every hour in the evening (I'm dosing Kalk). Is there any way to do this without multiple on/off commands?

Figured it would be similiar to a kalk stirrer, but the only reference I see to one on the boards doesn't work.

dhoch
10/06/2006, 08:34 AM
Not for only in the evening...

But for 10 mins every hour:

OSC 010/050 ON/OFF Then ATO ON

If you need to turn off in the day you need to set the times...

Full program would look something like this:

OSC 010/050 ON/OFF Then ATO ON
If time > (evening start time) THEN EVE ON
If time > (evening end time) THEN EVE OFF
If EVE = OFF THEN ATO OFF

Dave

MJAnderson
10/06/2006, 08:46 AM
Thanks!