I posted a pic of the script for the auto feeder. I am looking for advice on how to shut down the pumps and etc, just like i set feeder A.
Basically, run feeder A program and aunt feeder at the same time.
What do I need to add?
Thank you for your help
I don't quite follow what you are trying to accomplish with your script.
Here is how I run my autofeeder:
I have a virtual outlet called "Feedcycle"
Virtual outlet :Feedcycle
Fallback OFF
Set OFF
If Time 17:00 to 17:02 Then ON
If FeedD 000 Then ON
This will allow one rotation of the drum at 5pm everyday (there is a one min delay on my feeder)
Outlet Feeder:
Fallback OFF
Set OFF
If Outlet Feedcycle = ON Then ON
Defer 001:00 Then ON
If FeedD 000 Then ON
This is the actual feeder outlet. The one minute delay is to allow my tank to finish draining after the return pump shuts off, before the feeder begins to turn
Outlet: Main pump (my return pump)
Fallback ON
Set ON
If FeedD 000 Then OFF
If Outlet Feedcycle = ON then Off
Defer 007:00 Then ON
This gives my fish 7 minutes to eat then the return pump starts back up
Same idea for the skimmer..but the Defer is 20 min for the skimmer
Same idea for the wavemakers, if virtual outlet Feedcycle is on, they go into a slow mode.
Once you have created a virtual outlet for setting up your feed times, you can do anything, multiple feeds per day, feed on only certain days of the week (I used to just feed Mon/Wed/Fri for example)....and all your associated equipment (pumps, skimmers, etc), will automatically shutdown, change flow etc everytime. You only need to change how the virtual outlet works to affect every piece of equipment that has the If "virtual_outlet_name" then....statement.
Does that help?