Neptune Apex Programming Tutorials, Part 2: Timers

Jwill1316

Community Member
View Badges
Joined
Dec 12, 2022
Messages
85
Reaction score
39
Location
Jackson MI
Rating - 0%
0   0   0
What are you using to dose?

The command is different if you're using dos.
would this be a propper command to dose only at Nite I'm wanting to dose my system in small increments
and adjust as needed
Fallback OFF
OSC 000:00/000:40/700:00 Then ON
If Time 06:00 to 18:00 Then OFF
If pH > 8.40 Then OFF
im evaping about half a gallon a day and alk is dropping by .5dkh to 1 dkh
 

Sisterlimonpot

Effortless Perfection
View Badges
Joined
Jul 15, 2009
Messages
3,914
Reaction score
7,955
Location
Litchfield Park
Rating - 0%
0   0   0
Alright so you're using an outlet to control a pump of some sort.

The code you're providing seems right. It only allows the osc command to work when the time is between 6pm to 6am (If Time 06:00 to 18:00 Then OFF)

And if the pH is over 8.40 then it forces the outlet to stay off (If pH > 8.40 Then OFF)

The questionable part of your code is the osc. (OSC 000:00/000:40/700:00 Then ON)

The code you provided turns the outlet ON for 40 seconds and then OFF for 700 minutes (11h 40min) and then the cycle repeats, by then it will only turn on for one more 40 second interval until line 3 of your code turns the outlet off until 6pm.

Let's break it down in a manner that is simple, if I wanted the outlet to be ON for 30 seconds every 10 minutes the code will look like this

OSC 000:00/000:30/009:30 Then ON

you haven't stated the increments you want the outlet to be on, but hopefully you understand osc enough to set the proper numbers to accommodate your needs.

Otherwise the order of your 4 lines of code is correct, all you have to do is tailor the osc to your needs.
 

Jwill1316

Community Member
View Badges
Joined
Dec 12, 2022
Messages
85
Reaction score
39
Location
Jackson MI
Rating - 0%
0   0   0
Alright so you're using an outlet to control a pump of some sort.

The code you're providing seems right. It only allows the osc command to work when the time is between 6pm to 6am (If Time 06:00 to 18:00 Then OFF)

And if the pH is over 8.40 then it forces the outlet to stay off (If pH > 8.40 Then OFF)

The questionable part of your code is the osc. (OSC 000:00/000:40/700:00 Then ON)

The code you provided turns the outlet ON for 40 seconds and then OFF for 700 minutes (11h 40min) and then the cycle repeats, by then it will only turn on for one more 40 second interval until line 3 of your code turns the outlet off until 6pm.

Let's break it down in a manner that is simple, if I wanted the outlet to be ON for 30 seconds every 10 minutes the code will look like this

OSC 000:00/000:30/009:30 Then ON

you haven't stated the increments you want the outlet to be on, but hopefully you understand osc enough to set the proper numbers to accommodate your needs.

Otherwise the order of your 4 lines of code is correct, all you have to do is tailor the osc to your needs.
ok Gotcha yes, I'm using a pump from a ato bin hooked to my Kalk stirrer I'm basically trying to dose but in small increments to match the number of gallons I'm evaping out of the system I feel that by controlling the time and the amount I can dose as opposed to just allowing the ATO sensor to dose for me will give me more control over my kalk dosing. Wanted to dial it into seconds as opposed to min just so I dont overdose
 

Jwill1316

Community Member
View Badges
Joined
Dec 12, 2022
Messages
85
Reaction score
39
Location
Jackson MI
Rating - 0%
0   0   0
Alright so you're using an outlet to control a pump of some sort.

The code you're providing seems right. It only allows the osc command to work when the time is between 6pm to 6am (If Time 06:00 to 18:00 Then OFF)

And if the pH is over 8.40 then it forces the outlet to stay off (If pH > 8.40 Then OFF)

The questionable part of your code is the osc. (OSC 000:00/000:40/700:00 Then ON)

The code you provided turns the outlet ON for 40 seconds and then OFF for 700 minutes (11h 40min) and then the cycle repeats, by then it will only turn on for one more 40 second interval until line 3 of your code turns the outlet off until 6pm.

Let's break it down in a manner that is simple, if I wanted the outlet to be ON for 30 seconds every 10 minutes the code will look like this

OSC 000:00/000:30/009:30 Then ON

you haven't stated the increments you want the outlet to be on, but hopefully you understand osc enough to set the proper numbers to accommodate your needs.

Otherwise the order of your 4 lines of code is correct, all you have to do is tailor the osc to your needs.
so if I want to dose my tank for 40 seconds every 6 hours for 24 hours it would read
Fallback OFF
OSC 000:00/000:40/360:00 Then ON
If pH > 8.40 Then OFF
correct?
 

Sisterlimonpot

Effortless Perfection
View Badges
Joined
Jul 15, 2009
Messages
3,914
Reaction score
7,955
Location
Litchfield Park
Rating - 0%
0   0   0
so if I want to dose my tank for 40 seconds every 6 hours for 24 hours it would read
Fallback OFF
OSC 000:00/000:40/360:00 Then ON
If pH > 8.40 Then OFF
correct?
Pretty much, however I would subtract the 40 seconds from the 360 minutes so that the dose happens every 6 hours on the nose.

Fallback OFF
OSC 000:00/000:40/359:20 Then ON
If pH > 8.40 Then OFF

The first part of that code dictates what time the clock starts everyday, leaving it at 000:00/000 (midnight) you will get 4 doses at 40 seconds each in the 24h.

Because your code doesn't subtract the 40 seconds, the 4th dose won't be aloud to happen because the clock will reset before it has a chance to do the 4th dose...

Usually that's not a big deal except when you're only doing 4 doses it makes a big difference.
 

Jwill1316

Community Member
View Badges
Joined
Dec 12, 2022
Messages
85
Reaction score
39
Location
Jackson MI
Rating - 0%
0   0   0
Pretty much, however I would subtract the 40 seconds from the 360 minutes so that the dose happens every 6 hours on the nose.

Fallback OFF
OSC 000:00/000:40/359:20 Then ON
If pH > 8.40 Then OFF

The first part of that code dictates what time the clock starts everyday, leaving it at 000:00/000 (midnight) you will get 4 doses at 40 seconds each in the 24h.

Because your code doesn't subtract the 40 seconds, the 4th dose won't be aloud to happen because the clock will reset before it has a chance to do the 4th dose...

Usually that's not a big deal except when you're only doing 4 doses it makes a big difference.
wooow thank you very much this has been very helpful
 

Jwill1316

Community Member
View Badges
Joined
Dec 12, 2022
Messages
85
Reaction score
39
Location
Jackson MI
Rating - 0%
0   0   0
Pretty much, however I would subtract the 40 seconds from the 360 minutes so that the dose happens every 6 hours on the nose.

Fallback OFF
OSC 000:00/000:40/359:20 Then ON
If pH > 8.40 Then OFF

The first part of that code dictates what time the clock starts everyday, leaving it at 000:00/000 (midnight) you will get 4 doses at 40 seconds each in the 24h.

Because your code doesn't subtract the 40 seconds, the 4th dose won't be aloud to happen because the clock will reset before it has a chance to do the 4th dose...

Usually that's not a big deal except when you're only doing 4 doses it makes a big difference.
one more question since the command starts at midnite will the first dose happen at midnite or at 6AM
 

Jwill1316

Community Member
View Badges
Joined
Dec 12, 2022
Messages
85
Reaction score
39
Location
Jackson MI
Rating - 0%
0   0   0
Right at midnight it will turn on for 40sec. Then exactly at 0600, 1200 and 1800
this is how i want to dose starting out I want my first dose to start at 5pm then dose for 20 seconds every hour until 5am then i want the sequence to shut off from 5:05 to 16:59 would this be the proper dosing code
Fallback OFF
OSC 017:00/000:20/059:40 Then ON
If Time 05:05 to 16:59 Then OFF
If pH > 8.40 Then OFF
 

Sisterlimonpot

Effortless Perfection
View Badges
Joined
Jul 15, 2009
Messages
3,914
Reaction score
7,955
Location
Litchfield Park
Rating - 0%
0   0   0
basically want my dosing times at 5,7,9,11,1,3,5
Ok,

Your code has it doing it every hour starting at 5pm (OSC 017:00/000:20/59:40 Then ON)

Change it to:

Fallback OFF
OSC 017:00/000:20/119:40 Then ON
If Time 05:05 to 16:59 Then OFF
If pH > 8.40 Then OFF

EDIT: I'm confused, I think your code was right with your 1st reply, but changing it to 40 seconds every 2 hours (2nd reply) meant to change the osc to:

OSC 017:00/000:40/119:20 Then ON

Confused yet? Haha... because I still am... hehe
 

dwfain

Community Member
View Badges
Joined
Sep 18, 2020
Messages
96
Reaction score
40
Location
Benton
Rating - 0%
0   0   0
Neptune Apex Programming Tutorials, Part 2: Timers


For inspiration: a beautiful 10-gallon nano tank.
r2rdferrari13.jpg

This photo is from the Reef2Reef archives courtesy of @Dferrari13 ©2019, All Rights Reserved.

Note From the Editor:


This article is Part 2 of a series. Part 1 may be found here.

This article and several future ones by the same author were originally part of several presentations made to a local aquarium club on programming your Neptune Apex Controller. The article is reprinted with permission from the author.

Because this topic will be of great interest to some readers but no interest to others who have not automated their systems, R2R will run these programming articles every Friday until we come to the end of the series.

Photos, images, and diagrams included in this article below are all courtesy of the author, @SuncrestReef ©2019, All Rights Reserved.

~~~~~~~~~~~~~~~~~~~~~~~

Timers:
OSC, If Time, DOW, Defer, When, and Min Time

One of the most common tasks in reefing is to turn on and off a device on a specific schedule, whether that’s based on time of day, a repeating cycle of a number of minutes or hours, or on specific days of the week. The Apex gives you a number of choices on how to program outputs based on timers, each with a specific purpose:

  • OSC: A repeating On/Off interval, where you specify the number of minutes & seconds to be ON, and the number of minutes and seconds to be OFF
  • If Time: Turn on or off between specific times on the clock, down to the minute
  • DOW: Turn on or off based on the day of week
  • Defer: A delay of time in minutes and seconds to wait before turning on or off
  • When: A failsafe to switch an output from AUTO to OFF if it has been on or off for longer than specified in minutes and seconds. Requires manual intervention to reactivate the automatic programming.
  • Min Time: A delay of minutes and seconds before the output is allowed to turn on or off, regardless of the programming conditions
Some of these timers can be combined to achieve unique requirements, such as to turn on a pump every day from noon until 1pm, except for Saturday and Sunday. Let’s look at examples for each of these timers:

OSC

The OSC (short for Oscillation) command is great for turning things on and off in a repeating cycle. It uses three separate timers:

OSC MMM:SS/MMM:SS/MMM:SS Then [ON/OFF/Profile]

The timers define Delay before first run / Time to run / Delay until next run

The maximum value you can specify for any one of the timers is 999:99, which equates to 16 hours, 39 minutes, 59 seconds.

Here are a few examples:

OSC 000:00/005:00/005:00 Then ON

This would turn on the output for 5 minutes, then turn it off for 5 minutes, and repeat indefinitely:

image3-1.png

OSC 000:00/007:00/002:00 Then ON

This would turn on the output for 7 minutes, then turn it off for 2 minutes, and repeat indefinitely:

image3-2.png

OSC 007:00/002:00/000:00 Then ON

This would wait for 7 minutes, then turn on the output for 2 minutes, then turn it off for 0 minutes. It would then repeat the 7 minute off, 2 minute on cycle.

Screen Shot 2019-06-14 at 8.48.15 PM.png

One reason to use the initial delay would be to stagger two different outputs so they don’t run at the exact same time, such as dosing pumps.

The odd thing about the initial delay timer is that it calculates from midnight of January 1, 1996. If your timer values added together are evenly divisible into 1440 (24 hours), then your output will always come on at the same times each day. If they are not divisible into 1440, then each day will be slightly different, and you’d have to do some interesting math to figure out when it would turn on on any given day.

My personal example:

I use the OSC command to activate my Swabbie skimmer neck cleaner every six hours. The Swabbie has a motor that rotates the cleaning wiper in the skimmer neck very slowly, so it needs to run for about 2 minutes to thoroughly wipe all the crud from the neck. Here is the programming for my Swabbie output:

Fallback OFF
OSC 000:00/002:00/358:00 Then ON
If Output EB_3_Skimmer = OFF Then OFF


The first line — Fallback OFF — instructs the Apex to turn off this output if the Apex ever gets disconnected from the Energy Bar where the Swabbie is plugged in. This could also apply if the Apex locks up and becomes unresponsive (which rarely happens). This just basically means don’t run the program if the Apex unit isn’t in control of the situation.

The OSC timers in this example are:
  • 000:00 = zero minutes from midnight until the first run
  • 002:00 = two minutes of actual run time
  • 358:00 = 5 hours & 58 minutes to delay until the next run
The third line disables the Swabbie from running if my skimmer is off. This would prevent it from rotating accidentally if I’m performing maintenance on the skimmer or if it’s off during a feed mode.

Since my timers multiplied by 4 = 1440, my OSC timers trigger the Swabbie at the same times each day: Midnight, 6am, noon, 6pm.

If Time

If Time is used to turn on or turn off an output between a range of time:

If Time HH:MM to HH:MM Then [ON/OFF/Profile]

The If Time command is much simpler than OSC, but it does have a few intricacies to be aware of:

The times can only be specified in hours and minutes (in 24 hour format), so it is not as granular as the OSC command which goes down to minutes and seconds.

A very important thing to know is that the beginning time and ending times are inclusive. For example:

Set OFF
If Time 10:00 to 10:01 Then ON


will turn on the output at 10:00 and turn it off at 10:02:

image3-4.png

This means that the shortest duration you can run an output using If Time is actually two minutes. You cannot specify the same value for the start and end times, so 10:00 to 10:00 is invalid. If you want to use If Time for a shorter duration, it would need to be combined with the Defer statement:

Set OFF
If Time 10:00 to 10:01 Then ON
Defer 001:00 Then ON


This will cause it to wait until 10:01 to turn on, then turn off at 10:02. effectively giving you a 1 minute timer:

image3-5.png

I’ll explain Defer in more detail in the next section.

Another tip for If Time is that you can span midnight with your start and end time. For example, I run my refugium light on the opposite schedule from my display tank lights:

Set OFF
If Time 18:00 to 08:00 Then ON


image3-6.png

DOW

The DOW (Day Of Week) command can use to turn on or off and output based on the day of week.

If DOW SMTWTFS Then [ON/OFF/Profile]

The letters for each day of the week are placeholders, and if you substitute one with a hyphen, then that day will evaluate False and the output will not be triggered for that day. For example:

Set OFF
If DOW SM-W-FS Then ON


This would turn on the output every day except for Tuesday and Thursday.

image3-7.png

DOW is particularly useful when combined with the If Time command. Let’s say you want to run a circulation pump once per day for an hour every day except on Saturday when you are doing maintenance:

Set OFF
If Time 12:00 to 12:59 Then ON
If DOW ------S Then OFF


Remember from my introduction section that the last line of programming that evaluates True will dictate what the output does. In this example, the If Time command is true from 12:00 to 12:59, but the DOW command will evaluate True only on Saturday since that’s the only placeholder not replaced with a hyphen.


Defer

Defer is used to delay taking action on an output for a period of time.

Defer MMM:SS Then [ON/OFF]

This command is different than other ON/OFF commands because it’s actually delaying the outlet from changing from off to on, or from on to off, for the specified amount of time. In the above example using If Time where we need the output to turn on for less than 2 minutes, but If Time can’t do that, so the Defer delay was used to prevent the output from turning on until the 1 minute delay elapsed.

Defer is particularly useful when basing an output on the reading of a probe or sensor. For example, if you have a float switch in your sump to trigger your ATO pump when the water is low, but the water surface has small ripples that can cause the float switch to go up and down with the water movement, it could trigger your ATO pump on and off rapidly for no valid reason. To prevent this, the Defer command can be used to wait for the float switch to provide a consistent reading for a period of time, ensuring that the water really is low enough to justify turning on the ATO pump:

Set OFF
If Float1 Open Then ON
Defer 000:10 Then ON


In this example, the float switch needs to continuously report Open for 10 seconds before the pump will actually be turned on. Once the float switch first reports Open, the Defer countdown timer begins. If after 3 seconds the float switch reports Closed, then the timer is reset to 10 seconds.

A good analogy for Defer is the shot clock in NBA basketball. (sorry to those non-basketball fans reading this). Once your team has the ball, you have 24 seconds to make a shot. If the ball doesn’t touch the rim, the ball is turned over to your opponent. But if you do make a shot that hits the rim but doesn’t go in, the shot clock is reset and you have another 24 seconds to try again. The Defer is just a countdown timer that once it expires, the output can then change state.

To take our float switch example one step further, I’ll add another Defer to handle the situation when the ATO pump is adding water and the float switch finally reports Closed due to the rising water level. Since there are still ripples on the water surface, it might toggle between Open and Closed several times before it finally settles in on Closed.

Set OFF
If Float1 Open Then ON
Defer 000:10 Then ON
Defer 000:10 Then OFF


Defer statements can be placed anywhere in the list of programming lines because they apply to the output itself and are not part of what evaluates as True or False. Another way to represent this is:

Set OFF
If Float1 Open Then ON
— — — — — — — — — — —
Defer 000:10 Then ON
Defer 000:10 Then OFF

(don’t put the dashes into your program….this is just for a visualization)

The program is above the dashed line, and the last line to evaluate as True dictates how to set the output state. The Defer statements are then controlling how long to wait before setting the output state.


When

The When command is very unique in Apex programming. It is used to switch an output’s tile from AUTO to OFF if a condition is met. It is most commonly used for ATO pump programming, since a failed optical switch or float switch could allow the ATO pump to continue flooding your sump with fresh water, harming your tank inhabitants and flooding your home; or perhaps the ATO reservoir is empty and the pump continues to run dry. Once triggered, the output is forced into manual OFF mode and the programming will no longer operate until you manually move the slider back to the AUTO position.

Using our ATO pump example from above, here we add the When command. This assumes that our ATO pump should never need to run for more that 3 minutes straight under normal evaporation conditions.

Set OFF
If Float1 Open Then ON
Defer 000:10 Then ON
Defer 000:10 Then OFF
When ON > 003:00 Then OFF


Like the Defer commands, When may be placed anywhere in the list of programming lines. I tend to place Defer and When commands at the end for ease of reading and troubleshooting.


Min Time

The Min Time command is similar to Defer, but with a distinct difference:
  • Defer - will delay an outlet from changing its state for a specified period of time
  • Min Time - will ensure an outlet stays in its current state for a minimum period of time
In other words, the output must remain in the specified state for the specified period of time, regardless of the conditions listed in the output programming.

Again, the most common example of Min Time is for the ATO pump. Rather than having it turn on and off every few minutes as dictated by the float switch for the slightest amount of evaporation, you can force it to run less frequently even though that means it needs to pump water a bit longer.

Set OFF
If Float1 Open Then ON
Defer 000:10 Then ON
Defer 000:10 Then OFF
When ON > 003:00 Then OFF
Min Time 060:00 Then OFF


This tells the output to remain Off for at least 60 minutes. Once that timer expires, the specified programming commands will operate again as normal.

Hopefully this tutorial has been helpful. Stay tuned for the next article in this series--ATK programming and troubleshooting--which builds on what I covered here.

~~~~~~~~~~

We encourage all our readers to join the Reef2Reef forum. It’s easy to register, free, and reefkeeping is much easier and more fun in a community of fellow aquarists. We pride ourselves on a warm and family-friendly forum where everyone is welcome. You will also find lots of contests and giveaways with our sponsors.

~~~~~~~~~~~

Author Profile: @SuncrestReef

John Halsey is a reefing hobbyist who keeps a Red Sea Reefer XL 425 in his living room. He is new to reefing with just over one year of experience, but has been successful in keeping a healthy mixed reef by following best practices learned here on R2R as well as actively participating in his local aquarist club -- PNWMAS -- in Portland, Oregon. John retired from his 30-year career in IT support, and put that technical expertise to good use by automating much of his aquarium equipment with an extensive Neptune Apex system.

~~~~~~~~~~~
Great article, thanks. On the If statement Then has 3 settings On/Off/Profile. What is Profile and how do you use it? I've looked through everything and cannot find it. I'd like to be able to turn the outlet back to Auto not On. For example, I have it controlling my return pump and if I set it to on the pump run at 100% rather than the percentage I have them set for.
 

Sisterlimonpot

Effortless Perfection
View Badges
Joined
Jul 15, 2009
Messages
3,914
Reaction score
7,955
Location
Litchfield Park
Rating - 0%
0   0   0
Great article, thanks. On the If statement Then has 3 settings On/Off/Profile. What is Profile and how do you use it? I've looked through everything and cannot find it. I'd like to be able to turn the outlet back to Auto not On. For example, I have it controlling my return pump and if I set it to on the pump run at 100% rather than the percentage I have them set for.
Profiles are seldom used these days, but fusion has a section called Profiles (it's the icon that looks like a folder). Profile allows you to perform a particular task. It was primarily used for lighting ramp up, ranp down. Same can be done with pumps as well. Its somewhat intuitive and if you navigate to the profile section you can see for yourself.

But let's say you create a ramp profile and named it "SLOWDOWN". You set it for "Ramp Time" 600, "Start Intensity" 100% "End Intensity 50%.

Then you put this line in your return pump outlet. IF Time 08:00 to 09:00 Then SLOWDOWN

At 8am fusion will execute that profile. It will take 10 min (600 seconds) to go from 100% to 50%.

These days fusion offers other options like the wizard and now a days you can set pump percentages without profiles. But profiles are still a powerful tool to have.
 

Sleepydoc

Valuable Member
View Badges
Joined
Apr 10, 2017
Messages
1,423
Reaction score
1,266
Location
Minneapolis, MN
Rating - 0%
0   0   0
Great article, thanks. On the If statement Then has 3 settings On/Off/Profile. What is Profile and how do you use it? I've looked through everything and cannot find it. I'd like to be able to turn the outlet back to Auto not On. For example, I have it controlling my return pump and if I set it to on the pump run at 100% rather than the percentage I have them set for.
The only way you can change the mode of an outlet (i.e. between OFF, AUTO and ON) is with the ‘When ON > xx:xx THEN OFF’ statement. Other than that you need to physically set the outlet mode yourself and once it’s been switched off with the When statement you have to manually enable it again.

What kind of return pump do you have? If it’s a COR pump you can directly set an output as a percentage. If it‘s another pump that has a 0-10V control you use the profile settings to set the output of the Apex 0-10V outlets as @Sisterlimonpot describes. One thing that’s not totally intuitive is that if you want a static level (say to set the output to 50%,) you actually use a ramp profile, except the start and end are the same so you ‘ramp’ from 50% to 50% over some arbitrary (and meaningless) period of time.
 

hwx080080

New Member
View Badges
Joined
Feb 18, 2023
Messages
3
Reaction score
1
Location
湖南
Rating - 0%
0   0   0
楼主太好了,正愁怎么掌握编程知识,楼主几乎全部出了APEX的所有应用知识,非常有力的帮助了我!than you very much!

Translation:
The poster is great, I am worried about how to master the programming knowledge, the poster has almost all the application knowledge of APEX, which is very powerful for me! Thank you very much!
 

Akhval

Active Member
View Badges
Joined
Aug 8, 2019
Messages
233
Reaction score
89
Rating - 0%
0   0   0
If you forget to turn on the return pump from off to auto in detail, is there a code that we can set to say like - in 45 minutes if it stays off, then turn back to auto
 

Sleepydoc

Valuable Member
View Badges
Joined
Apr 10, 2017
Messages
1,423
Reaction score
1,266
Location
Minneapolis, MN
Rating - 0%
0   0   0
If you forget to turn on the return pump from off to auto in detail, is there a code that we can set to say like - in 45 minutes if it stays off, then turn back to auto
No. The best way to think about the 'on' and 'off' settings is as manual overrides. if you set an outlet to on/off it is outside of the program's control and will stay there until you manually change it. The 'when ON >> xx:xx' statement mentioned above will move an outlet from Auto (program-controlled) to off but there is no reverse.

While this may seem annoying it's actually a solid design. If you turn an outlet off you don't want to worry about the controller switching it on without you realizing it.

What's the situation you're trying to deal with? If you have a case where you want the outlet to be off and then switched on again you're really saying you still want the controller to be in charge and you're best off putting that into the code.

Otherwise you can set a virtual outlet to come on when the other outlet has been off for a set amount of time and use that to send you an alarm notification.
 

Battlecorals

Aquaculturist
View Badges
Joined
Oct 15, 2009
Messages
7,015
Reaction score
16,444
Location
Wisconsin
Rating - 100%
2   0   0
Oscillate always confuses me. A search landed me here. outstanding work. This is truly remarkable. Thanks, from all of us that need this!
 

ostrow

Community Member
View Badges
Joined
Jan 16, 2009
Messages
66
Reaction score
39
Rating - 0%
0   0   0
Hi.. I want a doser to go on at 11am and at 9pm for 25sec. Otherwise off.

Did I do that right?

Fallback OFF
OSC 000:00/000:25/600:35 Then ON
If Time 22:00 to 11:00 Then OFF
 

When to mix up fish meal: When was the last time you tried a different brand of food for your reef?

  • I regularly change the food that I feed to the tank.

    Votes: 45 20.5%
  • I occasionally change the food that I feed to the tank.

    Votes: 76 34.5%
  • I rarely change the food that I feed to the tank.

    Votes: 73 33.2%
  • I never change the food that I feed to the tank.

    Votes: 21 9.5%
  • Other.

    Votes: 5 2.3%

New Posts

Back
Top