Confused and Tattooed?

Reefocd

New member
I am trying to program ato reservoir pump that happens to feed a kalk reactor that tops off my tank and code is not working. Here is my program where I remove a line to isolate problem and OSC statement is still not turning on PM1 ?

I can turn PM1 on and off from aqua notes outlet display ? In ac3 user manual have samples of code with and without an "M" parm assume is minutes?

Would like to know how if I have on 2 min and off 58 that I can trigger the on cycle to test, perhaps unplug controller? In this type of example is it 2 on at top of hour? Regardless not working at the moment.

All help appreciated. Disregard all * as did this during copy/paste on iPad?

If Temp *> 77.0 * * *Then COL ON*
If Temp *< 76.5 * * *Then COL OFF
If Temp *< 78.0 * * *Then HET ON*
If Temp *> 79.5 * * *Then HET OFF
If Time > 00:00 * * * Then PM2 ON*
If FeedA 000 * * * * Then PM2 OFF
If ORP * < 365 * * * * Then OZN OFF
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.40 * * * Then ALM ON*
If pH * *< 08.10 * * * Then ALM ON*
If ORP * > 450 * * * * Then ALM ON*
If ORP * < 100 * * * * Then ALM ON*
If Temp *< 75.0 * * *Then ALM ON*
If Temp *> 79.5 * * *Then ALM ON*
If Time > 12:00 * * * Then LT1 ON*
If Time > 16:00 * * * Then LT1 OFF
-- new code below and will add back a NKA statement once I have OSC working?

If Time > 07:00 * * * Then NKA ON*
If Time > 22:00 * * * Then NKA OFF
OSC 002/058 ON/OFF * *Then PM1 ON*
If pH * *> 08.30 * * * Then PM1 OFF
 
Last statement not working either ?

Last statement not working either ?

I am trying to program ato reservoir pump that happens to feed a kalk reactor that tops off my tank and code is not working. Here is my program where I remove a line to isolate problem and OSC statement is still not turning on PM1 ?

I can turn PM1 on and off from aqua notes outlet display ? In ac3 user manual have samples of code with and without an "M" parm assume is minutes?

Would like to know how if I have on 2 min and off 58 that I can trigger the on cycle to test, perhaps unplug controller? In this type of example is it 2 on at top of hour? Regardless not working at the moment.

All help appreciated. Disregard all * as did this during copy/paste on iPad?

If Temp *> 77.0 * * *Then COL ON*
If Temp *< 76.5 * * *Then COL OFF
If Temp *< 78.0 * * *Then HET ON*
If Temp *> 79.5 * * *Then HET OFF
If Time > 00:00 * * * Then PM2 ON*
If FeedA 000 * * * * Then PM2 OFF
If ORP * < 365 * * * * Then OZN OFF
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.40 * * * Then ALM ON*
If pH * *< 08.10 * * * Then ALM ON*
If ORP * > 450 * * * * Then ALM ON*
If ORP * < 100 * * * * Then ALM ON*
If Temp *< 75.0 * * *Then ALM ON*
If Temp *> 79.5 * * *Then ALM ON*
If Time > 12:00 * * * Then LT1 ON*
If Time > 16:00 * * * Then LT1 OFF
-- new code below and will add back a NKA statement once I have OSC working?

If Time > 07:00 * * * Then NKA ON*
If Time > 22:00 * * * Then NKA OFF
OSC 002/058 ON/OFF * *Then PM1 ON*
If pH * *> 08.30 * * * Then PM1 OFF

Update:

I had turned on PM1 from aqua notes and while on, I was standing near controller and hd4 box when ph went from 8.30 to 8.31 and PM1 did not shut off? Could it be I don't have the time > 00:00 for PM1 like I do for PM2?
 
Aren't you missing the third parameter for the OSC command?

If you want it to run for 2 minutes at the top of every hour I think it should be:

OSC 000/002/058

Which says, starting at MIDNIGHT don't wait (000), then run for 002 minutes, then sleep for 058 minutes. When that cycles finishes it will repeat, running for 2 minutes at the top of every hour.
 
Back
Top