Results 1 to 8 of 8

Thread: “Cycling” ATO Pump

  1. #1
    New User
    Join Date
    Apr 2018
    Location
    Philadelphia, PA
    Posts
    5

    “Cycling” ATO Pump

    I’m a first time Apex user but very experienced with another brand controller. Apex is awesome, so refined.

    I wired float switches to the breakout box and the switches respond in my dashboard as expected.

    If I put a lamp in the EB8 outlet with the code below it goes on and stays on then turns off when expected as the floats move following the code below. Works great as expected. The problem is that when I use my ATO pump it goes on for a few seconds then off for a few then on, etc...until the floats turn it off for good. Why is it “cycling?” But if I toggle the outlet to ON in Fusion it will stay on and not cycle. Also on a physical switch the pump works fine. The pump is a little giant approx 50 Watts. Any suggestions?

    I tried several EB8 outlets and even a separate EB8. All the same thing. So strange.

    Fallback OFF
    Set OFF
    If Sw1 CLOSED Then ON
    If Sw2 OPEN Then OFF

    I also tried:

    Fallback OFF
    Set OFF
    If Sw1 CLOSED Then ON

    and:

    Fallback OFF
    Set OFF
    If Sw1 CLOSED Then ON
    If Sw1 OPEN Then OFF






  2. #2
    Frequent Contributor zombie's Avatar
    Join Date
    Dec 2013
    Location
    Denver, CO
    Posts
    13,176
    You want this as your starting point (you can leave the min time out for testing, but you will want it after done testing). Also rename your switches so they are easier to remember later.

    Fallback OFF
    Set OFF
    If ATOlow CLOSED Then ON
    If ATOhig OPEN Then OFF
    Defer 000:10 Then ON
    Defer 000:04 Then OFF
    When On > 005:00 Then OFF
    Min Time 060:00 Then OFF

    You might be an engineer if...You have no life and can prove it mathematically.

  3. #3
    New User
    Join Date
    Apr 2018
    Location
    Philadelphia, PA
    Posts
    5
    Quote Originally Posted by zombie View Post
    You want this as your starting point (you can leave the min time out for testing, but you will want it after done testing). Also rename your switches so they are easier to remember later.

    Fallback OFF
    Set OFF
    If ATOlow CLOSED Then ON
    If ATOhig OPEN Then OFF
    Defer 000:10 Then ON
    Defer 000:04 Then OFF
    When On > 005:00 Then OFF
    Min Time 060:00 Then OFF

    You might be an engineer if...You have no life and can prove it mathematically.
    Thank you for responding I will try this tomorrow. If it works I’ll still be confused why the output would illuminate a light bulb consistently but run a pump intermittently.


    Sent from my iPhone using Tapatalk

  4. #4
    Frequent Contributor zombie's Avatar
    Join Date
    Dec 2013
    Location
    Denver, CO
    Posts
    13,176
    Quote Originally Posted by mls228 View Post
    Thank you for responding I will try this tomorrow. If it works I’ll still be confused why the output would illuminate a light bulb consistently but run a pump intermittently.


    Sent from my iPhone using Tapatalk
    The defers and min time should take care of that. It can do that with pumps, because the sensor has a short range in its level (about 2mm) where it can bounce back and forth between open and closed. The defers act as a "debouncer" so those quick jolts are ignored and the min time prevents it from short cycling.

    You might be an engineer if...You have no life and can prove it mathematically.

  5. #5
    New User
    Join Date
    Apr 2018
    Location
    Philadelphia, PA
    Posts
    5
    Quote Originally Posted by zombie View Post
    The defers and min time should take care of that. It can do that with pumps, because the sensor has a short range in its level (about 2mm) where it can bounce back and forth between open and closed. The defers act as a "debouncer" so those quick jolts are ignored and the min time prevents it from short cycling.

    You might be an engineer if...You have no life and can prove it mathematically.
    Thanks but this didn’t work. The light bulb stays lit but if I use the pump it only runs for about 2 seconds, stops, then starts and repeats.

    Something else is at play.


    Sent from my iPhone using Tapatalk

  6. #6
    New User
    Join Date
    Apr 2018
    Location
    Philadelphia, PA
    Posts
    5
    Just had a thought. There has to be some other code in the controller that’s turning it off. I bet that’s it I’ll check.


    Sent from my iPhone using Tapatalk

  7. #7
    Frequent Contributor zombie's Avatar
    Join Date
    Dec 2013
    Location
    Denver, CO
    Posts
    13,176
    Quote Originally Posted by mls228 View Post
    Just had a thought. There has to be some other code in the controller that’s turning it off. I bet that’s it I’ll check.


    Sent from my iPhone using Tapatalk
    If you followed my changes and it is doing that behavior, there is a problem with the pump most likely. What happens when you plug that pump straight into the wall?

    You might be an engineer if...You have no life and can prove it mathematically.

  8. #8
    New User
    Join Date
    Apr 2018
    Location
    Philadelphia, PA
    Posts
    5
    Pump works fine in the wall.

    I did a factory reset and I’m using your code and everything is working perfect now.

    THANK YOU.


    Sent from my iPhone using Tapatalk

Similar Threads

  1. Code to pause skimmer during ATO cycling?
    By Chaostactics in forum Misc Apex Usage & Programming
    Replies: 3
    Last Post: 08-28-2020, 18:09
  2. Help! Shut off my ATO pump once my ATO reservoir runs dry.
    By sirrichard33 in forum Apex Programming for Dosing, ATO, and AWC
    Replies: 2
    Last Post: 02-15-2020, 11:28
  3. Keeping a RODI pump from short cycling
    By reblatz in forum Misc Apex Usage & Programming
    Replies: 7
    Last Post: 08-08-2018, 19:20
  4. Review My Program ATO Cycling when time limit is hit
    By ryeguyy84 in forum Apex Programming for Dosing, ATO, and AWC
    Replies: 3
    Last Post: 04-13-2017, 20:19
  5. Limiting ATO pump regardless of ATO switch state
    By eyesolator in forum Apex Programming for Dosing, ATO, and AWC
    Replies: 5
    Last Post: 08-04-2013, 08:34

Bookmarks

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •