Apex Programming for Plank auto feeder off by 3 hrs

WhiteBeltReefer

Community Member
View Badges
Joined
Oct 6, 2023
Messages
29
Reaction score
47
Location
Illinois - Near St Louis
Rating - 0%
0   0   0
Hi all, I’m trying to run a Plan auto feeder every 2 hrs starting at 11am till 7pm. 5 total feedings at 11, 1, 3, 5, and 7. According to my output log it’s starting the first feeding at 1400 which is 3 hrs later than I expected.

Fallback OFF
OSC 000:00/000:30/119:30 Then ON
If Time 19:01 to 10:59 Then OFF
 

sdreef

Well-Known Member
View Badges
Joined
Dec 24, 2015
Messages
849
Reaction score
3,323
Rating - 0%
0   0   0
Here is how I have mine configured. Not sure why yours is 3 hours off if the apex time is correct.

Screenshot 2024-02-05 at 5.45.18 PM.png
Screenshot 2024-02-05 at 5.45.51 PM.png


Here's one option that will achieve what you're going for.

For the feeder program:
Fallback OFF
Set OFF
OSC 000:00/000:30/119:30 Then ON
If Output AFPump (or whatever the pump output is called) = OFF Then OFF

For the pump output:
Fallback OFF
Set OFF
If Time 11:00 to 11:15 Then ON
If Time 13:00 to 13:15 Then ON
etc.

Regarding the time, you can decide the duration of time you want the pump on. I generally run it for 10 to 15 minutes. For my oscillate function for the feeder, I delay one minute prior to dispelling food to allow any old food in the feeding tube to be dispelled. Probably not important.
 

braaap

Well-Known Member
View Badges
Joined
Jul 16, 2015
Messages
931
Reaction score
820
Location
Montana
Rating - 100%
3   0   0
Ahh, Ok, 2 hrs of the difference is I was using local time vs. Apex time. Now to figure out the other hour.

Local time and apex time should be the same. Do you have two time tiles on your dashboard? If you do and you are in the same timezone as your apex you need to fix that.
 

sdreef

Well-Known Member
View Badges
Joined
Dec 24, 2015
Messages
849
Reaction score
3,323
Rating - 0%
0   0   0
Still off by an hour today. Anyone have any ideas?

You are using the oscillate function to turn on every two hours which starts at midnight and goes ever two hours thereafter. That likely accounts for the hour. Based on how you have it programmed, the first time it will feed would be noon.
 
OP
OP
W

WhiteBeltReefer

Community Member
View Badges
Joined
Oct 6, 2023
Messages
29
Reaction score
47
Location
Illinois - Near St Louis
Rating - 0%
0   0   0
If I added an hour to the delay field, would that allow me to get it to turn on at 11?

Example of what I’m thinking:

Fallback OFF
OSC 060:00/000:30/119:30 Then ON
If Time 17:01 to 09:00 Then OFF
 

sdreef

Well-Known Member
View Badges
Joined
Dec 24, 2015
Messages
849
Reaction score
3,323
Rating - 0%
0   0   0
If I added an hour to the delay field, would that allow me to get it to turn on at 11?

Example of what I’m thinking:

Fallback OFF
OSC 060:00/000:30/119:30 Then ON
If Time 17:01 to 09:00 Then OFF

That would be on a 3 hour cycle starting at midnight. So 1am, 4 am, 7 am which would not turn on due to the time command. The first time it would come on is 10 am. Is there a reason you want to use the oscillate function as opposed to a simply using a time command?
 

sdreef

Well-Known Member
View Badges
Joined
Dec 24, 2015
Messages
849
Reaction score
3,323
Rating - 0%
0   0   0
I’m thinking this will work:

Fallback OFF
OSC 060:00/000:30/59:30 Then ON
If Time 17:01 to 09:00 Then OFF

You mentioned you want to feed until 7PM with the first feeding at 11am.

I would suggest the following edit:
If Time 20:00 to 10:00 Then OFF

Otherwise, I think that should work.
 
OP
OP
W

WhiteBeltReefer

Community Member
View Badges
Joined
Oct 6, 2023
Messages
29
Reaction score
47
Location
Illinois - Near St Louis
Rating - 0%
0   0   0
Yes, it worked! Thank you! I didn't have to change the time window, but the OSC command with the 60 min delay allows to hit the odd numbered hours on a 2 hr cycle.
 

Reefing threads: Do you wear gear from reef brands?

  • I wear reef gear everywhere.

    Votes: 37 15.9%
  • I wear reef gear primarily at fish events and my LFS.

    Votes: 13 5.6%
  • I wear reef gear primarily for water changes and tank maintenance.

    Votes: 1 0.4%
  • I wear reef gear primarily to relax where I live.

    Votes: 30 12.9%
  • I don’t wear gear from reef brands.

    Votes: 135 58.2%
  • Other.

    Votes: 16 6.9%
Back
Top