When u say outlet program what exactly do you mean I don't really understand the question
If u could give me a call that would be great my name is tristan
Sorry I am just now getting back to this thread. I am going to make this post with a couple assumptions. If they are not correct or they do not apply let me know.
1. I assume that you are able to login to your Apex and navigate around.
2. I assume that your chiller does not have an internal temperature controller and or you don't wish to use it.
When I first got my Apex I used the basic settings and didn't get in to custom programming very much but as time went on I discovered the power of these controllers with it's custom programming. That being said I would highly recommend that you download and read the Unofficial Apex guide. There is a link to it in the Neptune forums on RC.
What I would do for a chiller is the following.
Browse to the outlet setup.
Choose the outlet that your chiller is connected to and change the programming type to custom.
Code:
Fallback OFF
Set OFF
If Temp > RT+1.0 Then On
Defer 001:00 Then On
If FeedA 000 Then Off
If Outlet Return = OFF Then OFF
If Outlet WaterChange = ON Then OFF
This would be an example of a custom program that will do the following. Each line is explained.
1. Default action is Off
2. If the temperature detected by the temp probe is greater than 1 degree than the defined temperature in the season table turn the chiller on
3. Defer activation of the chiller for 1 minute
4. If FeedA is 000 then turn Off
5. If my return pump is off then turn off the chiller
6. If the Virtual Outlet named WaterChange is On then turn the chiller off
The way the Apex operates is it will look at the above program and execute it's process sequentially, meaning it reads step one and determines which action to perform then moves on to step 2, step 3, etc...
The last two lines are ones that are added as a convienence to myself. I have coding in every outlet that if my return pump is off that everything else should be off with the exception of my Vortech which can sustain life in the tank in the event of a power failure, equipment failure etc... The virtual outlet WaterChange is just what it sounds like. When I do water changes I turn this virtual outlet on and that in turn will turn off my heater,chiller,skimmer,vortech and turn on my Fuge light so I can see what's going on in the sump area.
If you are not using the season table to control the temperature of your tank then you will need to replace the logic in line 3 to something like this.
If Temp > 81 Then On
If your chiller does have an internal temperature setting and you don't want to use it then you should set the chiller to the lowest possible setting temperature that you want your tank to ever get to. Meaning that it will actively chill the water as soon as it is turned on via the Apex and not cool the tank to a point where it causes the livestock distress & or death.