Results 1 to 5 of 5

Thread: If Power Apex Off is not working and causing problems

  1. #1
    Regular Vistor
    Join Date
    Feb 2013
    Location
    Clearwater FL
    Posts
    47

    If Power Apex Off is not working and causing problems

    Can someone enlighten me why the following is happening?

    I have a virtual outlet PwrOutDelay with the below code
    Code:
    Set OFF
    If Power Apex Off 000 Then ON
    Defer 002:00 Then ON
    This virtual outlet is showing constantly on: which is telling me that the statement "Power Apex OFF" is evaluating to true (when it certainly does have power).

    I had the following code in both of my return pump outlets:
    Return_4_1:
    Code:
    Fallback ON
    Set ON
    If FeedA 000 Then OFF
    If FeedB 000 Then OFF
    If FeedC 000 Then OFF
    If FeedD 000 Then OFF
    If Outlet PwrOutDelay = ON Then OFF
    Return_6_1:
    Code:
    Fallback ON
    Set ON
    If FeedA 000 Then OFF
    If FeedB 000 Then OFF
    If FeedC 000 Then OFF
    If FeedD 000 Then OFF
    Defer 000:20 Then ON
    If Outlet PwrOutDelay = ON Then OFF
    not surprisingly, both return pumps failed to turn on after this change - as the virtual outlet is showing constantly on.

    I had also tried the following code:
    Return_4_1
    Code:
    Fallback ON
    Set ON
    If FeedA 000 Then OFF
    If FeedB 000 Then OFF
    If FeedC 000 Then OFF
    If FeedD 000 Then OFF
    If Power Apex Off 002 Then ON
    This left the pumps on, but interfered with the feed cycles. Feed was ignored and the pumps continued to run.

    This code: which was suggested by someone else - also resulted in the pumps remaining off and never turning on (again - because Power Apex Off is evaluating to True)
    Return_4_1
    Code:
    Fallback ON
    Set ON
    If FeedA 000 Then OFF
    If FeedB 000 Then OFF
    If FeedC 000 Then OFF
    If FeedD 000 Then OFF
    If Power Apex Off 002 Then OFF
    Power monitor is enabled:


    My overall goal here is to set-up the return pumps to defer 2 minutes after a reboot or a power outage to allow them to completely back-siphon before attempting to turn back on. If that virtual outlet always reads "On" then - I can't make this work.

  2. #2
    Frequent Contributor zombie's Avatar
    Join Date
    Dec 2013
    Location
    Denver, CO
    Posts
    13,176
    I'm 99.9% sure that your problem is that you have power monitor enabled but don't have the 12V power supply for the head unit. That feature should only be enabled if you have an energy bar fed from a UPS and a power supply plugged into a wall outlet.

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

  3. #3
    Regular Vistor
    Join Date
    Feb 2013
    Location
    Clearwater FL
    Posts
    47
    indeed that appeared to be the issue.

  4. #4
    Regular Vistor
    Join Date
    Feb 2013
    Location
    Clearwater FL
    Posts
    47
    Any ideas why my defer statement in the poweroutdelay is not being respected by the return programming? I've had several quick power outages since I've been running this scenario and the pumps are coming on immediately after a power outage. Is the defer statement ignored if you have fallback set to on in the return programming or is it an order of operation thing where I need to move the poweroutdelay higher in the execution queue?

  5. #5
    Master Control Freak RussM's Avatar
    Join Date
    Dec 2012
    Location
    California - US Pacific
    Posts
    22,488
    The problem is that the If Power statement is incorrect. It should be 002, not 000 so that the statement is true for 2 minutes after power is restored. And the Defer is actually counterproductive.

    You do not need the VO at all. It is just unnecessary complexity in this case.

    Just use If Power Apex OFF 002 Then OFF in the pumps' programs.
    Please do not send me PMs with technical questions or requesting assistance - use the forums for Apex help. PM me ONLY if the matter is of a private or personal nature. Thanks.

Similar Threads

  1. linking 2 FMM together causing power light to blink green
    By reachjohnnyliu in forum Fluid Monitoring Module (FMM), FMK, ATK, LDK, and FMM Accessories
    Replies: 1
    Last Post: 08-10-2021, 00:12
  2. Replies: 2
    Last Post: 01-15-2021, 04:49
  3. Question: APEX display causing issues
    By 91mini in forum Apex Classic/Apex Lite/Apex Jr
    Replies: 3
    Last Post: 12-16-2018, 12:00
  4. Help! Display causing Apex to freeze?
    By Grendel in forum Apex Classic/Apex Lite/Apex Jr
    Replies: 1
    Last Post: 10-10-2015, 22:19
  5. App Causing Power cycling
    By Jduck in forum Legacy Android App
    Replies: 1
    Last Post: 06-28-2014, 08:59

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
  •