Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Fellow "Control" freaks:
Finally got around to picking up necessary components to add a second tank to my controller...can anyone walk me through the process?
Thx
GS
Sweet - ya I just plan on daisy'n another eb8 thru aquabus to the other tank controlled thru 1 unit. Is there specifics you are looking for in hooking up GS?
If I buy another Eb8 - does it come with the regular usb aquabus to attach right up or is that an extra purchase needed to be made? Have the tanks pretty close together so no need for the "all the way thru the house aquabus"lol just attached from say 4-5' away.
If I buy another Eb8 - does it come with the regular usb aquabus to attach right up or is that an extra purchase needed to be made? Have the tanks pretty close together so no need for the "all the way thru the house aquabus"lol just attached from say 4-5' away.
Hey Drew,
Coincidentally I am in the process of the same thing. I have connected an eb8 from my main tank Apex and have it in the next room. Since this seems on topic and the OP has not responded to 143MPCo's question about what to add and what to control, I will temporarily step in.
Because heating and cooling is related to many other controllable devices, I think this is a good place to start. This requires a secondary temp probe distinct from the main tank. It can be run off of any probe module, as well as another base unit. I am using a PM2 because I might like to run a salinity probe at some point down the line.
All new eb8 outlets and temp probe set-up are functioning correctly. The problem I am currently facing is programming the new tanks outlets to recognize the new temp probe instead of the main tanks temp probe. Programming a heater for simple on and off range, for example in Advanced is:
If Temp < 77.0 Then ON
If Temp > 78.0 Then OFF
If Temp < 50.0 Then OFF
But Tmpx6, which is the second probes designation, does not work when plugged into this same program.
If Tmpx6 < 77.7 Then ON
If Tmpx6 > 78.0 Then OFF
If Tmpx6 < 50.0 Then OFF
Knowing this simply answer should make numerous things easier for this "remote" tank control, like switches, etc.
Sorry if I am kidnapping this thread.
Hey Drew,
Coincidentally I am in the process of the same thing. I have connected an eb8 from my main tank Apex and have it in the next room. Since this seems on topic and the OP has not responded to 143MPCo's question about what to add and what to control, I will temporarily step in.
Because heating and cooling is related to many other controllable devices, I think this is a good place to start. This requires a secondary temp probe distinct from the main tank. It can be run off of any probe module, as well as another base unit. I am using a PM2 because I might like to run a salinity probe at some point down the line.
All new eb8 outlets and temp probe set-up are functioning correctly. The problem I am currently facing is programming the new tanks outlets to recognize the new temp probe instead of the main tanks temp probe. Programming a heater for simple on and off range, for example in Advanced is:
If Temp < 77.0 Then ON
If Temp > 78.0 Then OFF
If Temp < 50.0 Then OFF
But Tmpx6, which is the second probes designation, does not work when plugged into this same program.
If Tmpx6 < 77.7 Then ON
If Tmpx6 > 78.0 Then OFF
If Tmpx6 < 50.0 Then OFF
Knowing this simply answer should make numerous things easier for this "remote" tank control, like switches, etc.
Sorry if I am kidnapping this thread.
But Tmpx6, which is the second probes designation, does not work when plugged into this same program.
If Tmpx6 < 77.7 Then ON
If Tmpx6 > 78.0 Then OFF
If Tmpx6 < 50.0 Then OFF
Knowing this simply answer should make numerous things easier for this "remote" tank control, like switches, etc.
Sorry if I am kidnapping this thread.
Ok, I understand a little better now, two temp probes and two EB8 correct?
If I understand correctly, sounds like you want to add two temp probes to control one outlet program, that will confuse the apex as it's getting governing info from two sources, you would be better off adding the code to a separate outlet. The temp probe on tank one will read differently from tank two, things like internal pumps/power-heads, etc. will add different sources of heat +/- and will make controlling from one outlet program difficult at best.
Also as you might already know this but, the first "if" statement in advance code normally takes priority over the last and the second temp might be reporting back a different temp but the first is the one governing the outlet thus the apex ignores the other.
Simple test, change the code to a different outlet and see whats happens.
On my Dashboard, 1-16 outlets are set-up with Temp(which is the temp probe #1). For example, the Send Alarm (non)-Outlet is:
Set OFF
If Temp > 82.5 Then ON
If Temp < 76.5 Then ON
Defer 001:00 Then OFF
Are you saying that I should rewrite this as:
Set OFF
If Tmpx6 > 82.5 Then ON
If Tmpx6 < 76.5 Then ON
Defer 001:00 Then OFF
And then drop the temp in my frag tank(temp probe #2) to below 76.5 to see if I get an alarm on the display?

