Plugging an inkbird directly into APEX bar?

BanjoBandito

Valuable Member
View Badges
Joined
Jul 24, 2018
Messages
2,301
Reaction score
2,940
Location
Butler County, PA
Rating - 0%
0   0   0
I'm slowly migrating equipment over to the APEX energy bar...does anyone plug their inkbird directly into the APEX? Would this cause issues? I'm thinking it'll give me some layered (redundancy) for temp. control.
 

dank reefer

IG: dankreefer_IG
View Badges
Joined
Jul 29, 2018
Messages
2,214
Reaction score
2,571
Location
Concord, NC
Rating - 0%
0   0   0
I have mine connected to my energy bar.

here is my programing on the outlet. I let the inkbird do all the switching on and off, and the APEX will shut it off only if it goes over that temp set.

Fallback ON
Set ON
If Tmp > 78.3 Then OFF
 
OP
OP
BanjoBandito

BanjoBandito

Valuable Member
View Badges
Joined
Jul 24, 2018
Messages
2,301
Reaction score
2,940
Location
Butler County, PA
Rating - 0%
0   0   0
I have mine connected to my energy bar.

here is my programing on the outlet. I let the inkbird do all the switching on and off, and the APEX will shut it off only if it goes over that temp set.

Fallback ON
Set ON
If Tmp > 78.3 Then OFF
OK perfect, that's exactly what I want. The APEX to just monitor it and cut the power if for some reason the inkbird fails out and starts crankin' the heat.
 

Vamsi

Active Member
View Badges
Joined
Jun 7, 2017
Messages
176
Reaction score
83
Rating - 0%
0   0   0
This is what I have

Fallback OFF
Set ON
If Power Apex Off 001 Then OFF
Defer 003:00 Then ON
If Tmp < 78.0 Then ON
If Tmp > 80.0 Then OFF
 
OP
OP
BanjoBandito

BanjoBandito

Valuable Member
View Badges
Joined
Jul 24, 2018
Messages
2,301
Reaction score
2,940
Location
Butler County, PA
Rating - 0%
0   0   0
This is what I have

Fallback OFF
Set ON
If Power Apex Off 001 Then OFF
Defer 003:00 Then ON
If Tmp < 78.0 Then ON
If Tmp > 80.0 Then OFF
So (and excuse me I'm knew to APEX language) what this is doing is sensing if the heat is too high it's shutting off the inkbird for 3 hours, then deferring to temp ranges if to turn it back on?
 

Miami Reef

Clam Fanatic
View Badges
Joined
Sep 8, 2017
Messages
11,197
Reaction score
20,804
Location
Miami Beach
Rating - 0%
0   0   0
So (and excuse me I'm knew to APEX language) what this is doing is sensing if the heat is too high it's shutting off the inkbird for 3 hours, then deferring to temp ranges if to turn it back on?
I’m pretty sure that’s 3 minutes in Apex world.
 

Vamsi

Active Member
View Badges
Joined
Jun 7, 2017
Messages
176
Reaction score
83
Rating - 0%
0   0   0
If I loose power, the inkbird will get power after 3 mins. I don’t want all the equipment to get turned on at the same time and risking tripping the power bar - esp if I am not at home. You can remove line 3 and 4 if you don’t want to stagger your equipment start.
 
OP
OP
BanjoBandito

BanjoBandito

Valuable Member
View Badges
Joined
Jul 24, 2018
Messages
2,301
Reaction score
2,940
Location
Butler County, PA
Rating - 0%
0   0   0
If I loose power, the inkbird will get power after 3 mins. I don’t want all the equipment to get turned on at the same time and risking tripping the power bar - esp if I am not at home. You can remove line 3 and 4 if you don’t want to stagger your equipment start.
perfect, thank you so much!
 

ZombieEngineer

Valuable Member
View Badges
Joined
Apr 3, 2022
Messages
1,310
Reaction score
1,175
Location
Broomfield
Rating - 0%
0   0   0
This is what I have

Fallback OFF
Set ON
If Power Apex Off 001 Then OFF
Defer 003:00 Then ON
If Tmp < 78.0 Then ON
If Tmp > 80.0 Then OFF
That isn't going to work the way you expect. When you use the apex as an override to a heater controller you need something more like this

Fallback ON
Set ON
If Tmp > 80.0 Then OFF
Min Time 030:00 Then OFF

Or

Fallback ON
If Tmp < 79.5 Then ON (Needs to be above your heater setpoint)
If Tmp > 80.0 Then OFF


Then add to one of these methods any additional failsafes and control methods like

If Output Return = OFF Then OFF
If Power Apex OFF 001 Then OFF
 
OP
OP
BanjoBandito

BanjoBandito

Valuable Member
View Badges
Joined
Jul 24, 2018
Messages
2,301
Reaction score
2,940
Location
Butler County, PA
Rating - 0%
0   0   0
That isn't going to work the way you expect. When you use the apex as an override to a heater controller you need something more like this

Fallback ON
Set ON
If Tmp > 80.0 Then OFF
Min Time 030:00 Then OFF

Or

Fallback ON
If Tmp < 79.5 Then ON (Needs to be above your heater setpoint)
If Tmp > 80.0 Then OFF


Then add to one of these methods any additional failsafes and control methods like

If Output Return = OFF Then OFF
If Power Apex OFF 001 Then OFF
I'm using Dank Reefer's suggestion right now:

Fallback ON
Set ON
If Tmp > 78.3 Then OFF


Which I presume means if the apex senses the temp (for me) above 82 it'll cut the power to that outlet.
 

ZombieEngineer

Valuable Member
View Badges
Joined
Apr 3, 2022
Messages
1,310
Reaction score
1,175
Location
Broomfield
Rating - 0%
0   0   0
I'm using Dank Reefer's suggestion right now:

Fallback ON
Set ON
If Tmp > 78.3 Then OFF


Which I presume means if the apex senses the temp (for me) above 82 it'll cut the power to that outlet.
You also need the min time line.

Without that line what will happen is once the temp reaches your setpoint, it will turn the heater off, then like 20 seconds later the tank will be cool enough that it's no longer true, turn it back in and the process will repeat and destroy your heaters.

Min Time makes it so whenever that safety trigger happens, the heater has to be off for at least 30 minutes before it's allowed to turn back on and start warming the tank again.

I would advise against 82 for your safety setpoint. 81 or less is much safer since 83+ can be deadly to certain species of coral. 1 to 2 degrees above your inkbird setting is a good setpoint.
 
OP
OP
BanjoBandito

BanjoBandito

Valuable Member
View Badges
Joined
Jul 24, 2018
Messages
2,301
Reaction score
2,940
Location
Butler County, PA
Rating - 0%
0   0   0
You also need the min time line.

Without that line what will happen is once the temp reaches your setpoint, it will turn the heater off, then like 20 seconds later the tank will be cool enough that it's no longer true, turn it back in and the process will repeat and destroy your heaters.

Min Time makes it so whenever that safety trigger happens, the heater has to be off for at least 30 minutes before it's allowed to turn back on and start warming the tank again.

I would advise against 82 for your safety setpoint. 81 or less is much safer since 83+ can be deadly to certain species of coral. 1 to 2 degrees above your inkbird setting is a good setpoint.
OK. I'm stealing this line of code from you then -

Fallback ON
Set ON
If Tmp > 80.0 Then OFF
Min Time 030:00 Then OFF


as my assumption is that'll cover what I want and also turn it off for 30 min. regardless. I'm still learning this apex stuff here. Just got my photon hooked up to it....holy potatoes, what a process. lol.
 

ZombieEngineer

Valuable Member
View Badges
Joined
Apr 3, 2022
Messages
1,310
Reaction score
1,175
Location
Broomfield
Rating - 0%
0   0   0

High pressure shells: Do you look for signs of stress in the invertebrates in your reef tank?

  • I regularly look for signs of invertebrate stress in my reef tank.

    Votes: 41 32.0%
  • I occasionally look for signs of invertebrate stress in my reef tank.

    Votes: 29 22.7%
  • I rarely look for signs of invertebrate stress in my reef tank.

    Votes: 25 19.5%
  • I never look for signs of invertebrate stress in my reef tank.

    Votes: 33 25.8%
  • Other.

    Votes: 0 0.0%
Back
Top