Apex and float switches not working

I am trying to add a float switch to me collection cup. here is the prograhm I have and it does not seem to be working
Fallback OFF
If Switch1 CLOSED Then OFF
 
Add either:

If Switch1 Opened Then ON

OR

Set ON (before the 'if switch' statement)

basically, you are never setting the outlet to ON so it will forever be off no matter what.
 
No, you can put the switch program directly into an outlet's program. Virtual outlets are nice when you want a switch to override an outlet's program and also want to be able to see the state of the switch separately from the outlet it might use.
 
Are you sure the float is connected correctly and to switch 1 input?

What did you go with; though I've used both and both work but I wanted to see what you ended up with.
 
you should have:

Fallback OFF
If Switch1 CLOSED Then OFF
If Switch1 Opened Then ON
 
The outlet does not matter. Set the outlet to Manual ON/OFF and verify that the skimmer turns ON/OFF.

In what way is it not working? Is it staying ON all the time or OFF? Are you moving the float up/down and there is no change? To rule out the float switch, remove it from the Breakout Box and in its place put a short length of wire between Pin1 and GND. This would make switch1 CLOSED and should turn the skimmer OFF.

Todd
 
I can turn the skimmer on and off manualy . I tried the short wire and nothing . The skimmer never turns off not with the wire or moving the float switch.
 
Then there is an issue with the Apex or the Breakout Box. Most likely candidate is the BB. Is this a Neptune BB or DIY?

Todd
 
ensure your float switch is wired for switch 1 on the breakout box. the way i remember the average float switch position is Open>UP (float in the up position), Closed>Down (float in the down position, obviously this is with the threads of the float switch on top. try the following:

Fallback OFF
Set ON
If Switch1 OPEN Then OFF

if you think the breakout box is faulty, check your connections or try another switch position and change the switch in the program.
 
Back
Top