Apex- Light on/off

MichaelReefer

2500 Club Member
View Badges
Joined
Aug 13, 2019
Messages
2,606
Reaction score
2,728
Location
Roseville
Rating - 0%
0   0   0
Good afternoon.
I am trying to have my Santa Monica run opposite of my lights but this doesn't seem to work. Any ideas?


Fallback on
Set OFF
If Time 22:00 to 10:30 Then ON
If Time 10:31 to 21:59 Then OFF
 

lck

New Member
View Badges
Joined
Sep 18, 2018
Messages
11
Reaction score
3
Rating - 0%
0   0   0
Good afternoon.
I am trying to have my Santa Monica run opposite of my lights but this doesn't seem to work. Any ideas?


Fallback on
Set OFF
If Time 22:00 to 10:30 Then ON
If Time 10:31 to 21:59 Then OFF
How about if set to

Fallback on
Set OFF
If Time 22:00 to 23:59 Then ON
If Time 00:01 to 10:30 Then ON
If Time 10:31 to 21:59 Then OFF

As I may have encountered something like that in the past, whenever the period go through 00:00, it may not work! But I maybe wrong!
 
Last edited:

Dburr1014

7500 Club Member
View Badges
Joined
May 8, 2016
Messages
8,388
Reaction score
8,426
Location
CT
Rating - 0%
0   0   0
Good afternoon.
I am trying to have my Santa Monica run opposite of my lights but this doesn't seem to work. Any ideas?


Fallback on
Set OFF
If Time 22:00 to 10:30 Then ON
If Time 10:31 to 21:59 Then OFF

Fallback on
Set on
If Time 10:31 to 21:59 Then off
 

Breadman03

Valuable Member
View Badges
Joined
Jun 30, 2015
Messages
2,249
Reaction score
2,022
Location
Luzerne County, PA
Rating - 0%
0   0   0
What about:
If Outlet MainLight = ON THEN ON
That’ll keep them aligned no matter how you might change your main light in the future. I coded all of my lights like that so that I only have to look at HalideL for any code updates.
 

Dburr1014

7500 Club Member
View Badges
Joined
May 8, 2016
Messages
8,388
Reaction score
8,426
Location
CT
Rating - 0%
0   0   0
What about:
If Outlet MainLight = ON THEN ON
That’ll keep them aligned no matter how you might change your main light in the future. I coded all of my lights like that so that I only have to look at HalideL for any code updates.
Good idea, but to run opposite it would be:
If outlet mainlight = on then off
 

ZombieEngineer

Valuable Member
View Badges
Joined
Apr 3, 2022
Messages
1,310
Reaction score
1,175
Location
Broomfield
Rating - 0%
0   0   0
The fallback state is irrelevant to normal function. That only tells the outlet what you want it to do if it loses comm with the apex. If it's better to run this 24/7 vs off entirely in that event, use Fallback ON, otherwise use OFF.

Three ways to code this. I am assuming your main lights are 10:30 to 22:00. All three work, choose whichever method makes the most sense to you so you can easily adjust it later if you need to.

1. Relate to main lights directly

Fallback ON
Set OFF
If Outlet MainLights = OFF Then ON

2. Two ways with timings

Fallback ON
Set ON
If Time 10:30 to 21:59 Then OFF

Fallback ON
Set OFF
If Time 22:00 to 10:29 Then ON
 
Last edited:

Rock solid aquascape: Does the weight of the rocks in your aquascape matter?

  • The weight of the rocks is a key factor.

    Votes: 12 9.2%
  • The weight of the rocks is one of many factors.

    Votes: 44 33.8%
  • The weight of the rocks is a minor factor.

    Votes: 41 31.5%
  • The weight of the rocks is not a factor.

    Votes: 31 23.8%
  • Other.

    Votes: 2 1.5%
Back
Top