PDA

View Full Version : Wave maker


tinnghe
03/26/2009, 08:29 AM
what is the best way to code so that you can have something similar to a eavenmaoer?

Can you oscolate to something less than a minute? Run this pump for 10 sec and run another pump for 10 sec

kenargo
03/26/2009, 02:06 PM
Can you oscolate to something less than a minute? Run this pump for 10 sec and run another pump for 10 sec

The minimum time for a device to be controlled is 1 minute, exception being Tunze pumps when using the AquaSurf.

tinnghe
03/27/2009, 01:35 AM
Can't seem to find the code anymore but how do you set one up so one is on and another is off?
Osc 01/01 on/off
If a0 on
Then a1 off

clp
03/27/2009, 11:31 AM
Use:

OSC 001/001 ON/OFF Then PM1 ON
OSC 001/001 ON/OFF Then PM2 OFF

Curt

tinnghe
03/28/2009, 09:05 AM
Wouldn't it have a potential that both run the same time? I want to be sure that one is on and another one is off

kenargo
03/30/2009, 03:27 PM
<a href=showthread.php?s=&postid=14709065#post14709065 target=_blank>Originally posted</a> by tinnghe
Wouldn't it have a potential that both run the same time? I want to be sure that one is on and another one is off

Yes, it is possible to get them out of sync if you use manual control on the pumps or have 'other' control statements that affect them (e.g., feed).

It takes 1 extra line but I prefer this:

OSC 001/001 ON/OFF Then PM1 ON
If Timer PM1 = On Then PM2 OFF
If Timer PM1 = Off Then PM2 ON

guaranteed never to be out of sync.