Pumps not turning back on....

benraines

New member
I have an AC3 with a DC8

I have a pump connected to A03.

The pump is the only thing I am currently controlling with the script below...

But it seems like the pumps don't turn back on sometimes after a feeding cycle..

Right now on the status page both PM1 and PM2 are showing a status of UNK (I believe this means unknown) and are set to auto.

I removed a couple of lines due to the OSC was set.. And I didn't want my pump to turn on and off every 10/20 minutes...

Maybe I goofed something up....

Also the alarm...

Is their something audible on the unit that will make a noise if the alarm kicks on.. Or do I need to purchase a device...

Was wanting to stay away from the X10's and do not have high-speed internet access..

My Scripts below


LT1$-A01
LT2$-A02
PM1#-A03
PM2#-A04
HET%-A05
COL%-A06
OZN&-A07
CO2&-A08
ALM&-A09


If Time > 11:59 Then LT1 ON
If Time > 21:30 Then LT1 OFF
If Time > 11:30 Then LT2 ON
If Time > 20:30 Then LT2 OFF
If Temp > 80.5 Then COL ON
If Temp < 80.0 Then COL OFF
If Temp < 80.0 Then HET ON
If Temp > 80.5 Then HET OFF
If Feed cycle Then PM1 OFF
If Feed cycle Then PM2 OFF
If ORP < 365 Then OZN ON
If ORP > 385 Then OZN OFF
If pH > 08.45 Then CO2 ON
If pH < 08.35 Then CO2 OFF
If Time > 00:00 Then ALM OFF
If pH > 08.10 Then ALM ON
If pH < 08.00 Then ALM ON
If ORP > 450 Then ALM ON
If ORP < 300 Then ALM ON
If Temp < 79.0 Then ALM ON
If Temp > 81.0 Then ALM ON
 
The program is missing the default on condtion for the pump. For a pump to always be on except during a feed cycle use:

If Time > 00:00 Then PM1 ON
If Feed cycle Then PM1 OFF

Curt
 
Back
Top