Using a heater controller with Apex. What did I do wrong?

southerntnreefer

Valuable Member
View Badges
Joined
Feb 19, 2018
Messages
2,214
Reaction score
1,542
Location
Southern Middle TN
Rating - 0%
0   0   0
It only seems to turn in when I put it to on,not to auto. Here is what I have setup.

Screenshot_20201107-191559.png
Screenshot_20201107-191609.png
 
Not 100% sure if I understand the question, but when on auto the heater is going to be “off” until your temp drops to 76.7. Then it’ll be “on” for a while until it reaches 81.5. Then off again. For example mine is off right now because my Max is set to 78.1... my min is 77.8 so it’ll turn back on again once my temp drops to 77.8

A97CF0AD-A664-4A23-B189-1CCCAAAE01FE.jpeg
 
The way you have it is telling the outlet to turn on when the temp falls below 76.7. It will never get there if your heater controller is keeping it above it.
Since you want the outlet on to control your heater controller I suggest you use the advance tab for coding. Use the following code:


Set ON
If Tmp >81.5 Then OFF


This will keep the outlet on at all times unless the temp reaches your failsafe temp to shut it off, in this case 81.5.
 
Not 100% sure if I understand the question, but when on auto the heater is going to be “off” until your temp drops to 76.7. Then it’ll be “on” for a while until it reaches 81.5. Then off again. For example mine is off right now because my Max is set to 78.1... my min is 77.8 so it’ll turn back on again once my temp drops to 77.8

A97CF0AD-A664-4A23-B189-1CCCAAAE01FE.jpeg
Ok so I'm using a finnex heater Controller. I want it to do the work. What's the best way to set this outlet then? Now that I read that through that makes sense. How do I configure the outlet to do what I want? I'd like to use apex to kill the outlet if the controller fails.
 
The way you have it is telling the outlet to turn on when the temp falls below 76.7. It will never get there if your heater controller is keeping it above it.
Since you want the outlet on to control your heater controller I suggest you use the advance tab for coding. Use the following code:


Set ON
If Tmp >81.5 Then OFF


This will keep the outlet on at all times unless the temp reaches your failsafe temp to shut it off, in this case 81.5.
This makes sense

I did that and get this

Screenshot_20201107-194127.png
 
I use my apex to control the temperature and have my heaters internal controller as a backup (basically having it set slightly above my max temp). If you want to use your heater controller to control temp and apex as a backup use the information Flux gave you. Basically keeps your outlet on at all times, unless temp goes above 81.5
 
The way you have it is telling the outlet to turn on when the temp falls below 76.7. It will never get there if your heater controller is keeping it above it.
Since you want the outlet on to control your heater controller I suggest you use the advance tab for coding. Use the following code:


Set ON
If Tmp >81.5 Then OFF


This will keep the outlet on at all times unless the temp reaches your failsafe temp to shut it off, in this case 81.5.
Nevermind figured it out. Needed a space. I'll likely need to add more in there at some point for feed modes and any power outage etc. This is a start! Thanks so much!
 
Set the Apex to turn on the heater output unless the temp is over 81.5:

Fallback ON
Set ON
If Tmp > 81.5 Then OFF
 
Yup it should turn back on once at 81.5. It won’t actually turn off until it’s above so 81.6.
Ok. I never ever let it get there, as the heater co troller kills it at 79. So that will allow the finnex to co trol it. Perfect! Super easy. Now on to the other outlets I have left to do!
 
Ok. I never ever let it get there, as the heater co troller kills it at 79. So that will allow the finnex to co trol it. Perfect! Super easy. Now on to the other outlets I have left to do!
Might want to think about using one of those other outlets for a backup heater in case yours fails. You can use your apex to turn that heater on if your temp falls below your current minimum. Just a suggestion for further backup;)
 
Might want to think about using one of those other outlets for a backup heater in case yours fails. You can use your apex to turn that heater on if your temp falls below your current minimum. Just a suggestion for further backup;)
I'll be looking to add a used Eb 4 as I'm out of outlets. That's the plan is to add that for just in cases. I also will be adding a BOB for a feed mode switch as well as some failsafes for my ato as well this was just day 1 install.
 

IF YOU HAD TO TAKE A REEFING EXAM, WOULD YOU PASS?

  • Yes!

    Votes: 32 45.7%
  • Not yet, but I have one that I want to buy in mind!

    Votes: 9 12.9%
  • No.

    Votes: 26 37.1%
  • Other (please explain).

    Votes: 3 4.3%
Back
Top