Results 1 to 9 of 9

Thread: Apex to rw8

  1. #1
    Regular Vistor
    Join Date
    Apr 2017
    Location
    Gaston, sc
    Posts
    18

    Apex to rw8

    I need some help I keep getting this message

  2. #2
    Master Control Freak RussM's Avatar
    Join Date
    Dec 2012
    Location
    California - US Pacific
    Posts
    22,464
    You are missing a required keyword: Time.

    If Time 10:00 to 10:59 Then duskdawn
    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.

  3. #3
    Regular Vistor
    Join Date
    Apr 2017
    Location
    Gaston, sc
    Posts
    18
    Can the apex to jebao thing work on there return pump and not just the power head

  4. #4
    Frequent Contributor zombie's Avatar
    Join Date
    Dec 2013
    Location
    Denver, CO
    Posts
    13,176
    Did you add time to all the lines with time or just the 10:00 to 10:59? That's the only issue I see from what's visible in the picture.

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

  5. #5
    Regular Vistor
    Join Date
    Apr 2017
    Location
    Gaston, sc
    Posts
    18
    Yea it worked but do u know if the apex to jebao work with the return pump

  6. #6
    Frequent Contributor zombie's Avatar
    Join Date
    Dec 2013
    Location
    Denver, CO
    Posts
    13,176
    It kind of works. 0% on the apex will set it to like 25% power instead of OFF using the Jebao adaptor. If you want it to shut off completely you have to either plug it into an energy bar and also shut that off or make a DIY adaptor based off of the "torx harness" design.

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

  7. #7
    Regular Vistor
    Join Date
    Apr 2017
    Location
    Gaston, sc
    Posts
    18
    How do u get the apex program to act like the jebao headunit to get it to pulse??? And how would I write the code

  8. #8
    Frequent Contributor zombie's Avatar
    Join Date
    Dec 2013
    Location
    Denver, CO
    Posts
    13,176
    You use the pump profile. Make sure to check divide by 10 and then set your min intensity to 0, max to whatever power you want (don't use less than 30) and set initial off time to around 4, on time to around 4 and off time to 0. This is my code to do tidally changing pulses with random elements to break up the flow.

    JebaoL (varspd)
    Set OFF
    If Time 10:01 to 13:00 Then WaveL3
    If Time 13:01 to 16:00 Then WaveL4
    If Time 16:01 to 19:00 Then WaveL3
    If Time 19:01 to 22:00 Then WaveL4
    If Time 22:01 to 01:00 Then WaveL1
    If Time 01:01 to 04:00 Then WaveL2
    If Time 04:01 to 07:00 Then WaveL1
    If Time 07:01 to 10:00 Then WaveL2
    If Outlet PumpOFF = ON Then OFF
    If Outlet LBurst = ON Then Burst
    If Outlet Lslow = ON Then Slow
    If FeedA 005 Then WaveL4
    If FeedA 003 Then Burst
    If FeedA 000 Then Slow
    If FeedD 000 Then OFF

    JebaoR (varspd)
    Set OFF
    If Time 10:01 to 13:00 Then WaveR3
    If Time 13:01 to 16:00 Then WaveR4
    If Time 16:01 to 19:00 Then WaveR3
    If Time 19:01 to 22:00 Then WaveR4
    If Time 22:01 to 01:00 Then WaveR1
    If Time 01:01 to 04:00 Then WaveR2
    If Time 04:01 to 07:00 Then WaveR1
    If Time 07:01 to 10:00 Then WaveR2
    If Outlet PumpOFF = ON Then OFF
    If Outlet RBurst = ON Then Burst
    If Outlet Rslow = ON Then Slow
    If FeedA 005 Then Burst
    If FeedA 002 Then WaveR4
    If FeedA 000 Then WaveR1
    If FeedD 000 Then Slow

    Lburst (VO)
    Fallback ON OSC 000:00/000:10/001:27 Then ON If Time 22:00 to 10:00 Then OFF

    Rburst (VO)
    OSC 000:00/000:12/001:20 Then ON If Time 22:00 to 10:00 Then OFF

    Lslow (VO)
    OSC 000:00/000:15/002:23 Then ON

    Rslow (VO)
    OSC 000:00/000:15/003:21 Then ON

    PumpOFF (VO)
    OSC 000:00/000:20/009:40 Then ON



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

  9. #9
    Frequent Contributor zombie's Avatar
    Join Date
    Dec 2013
    Location
    Denver, CO
    Posts
    13,176
    Profiles didn't copy right...trying again

    Profiles
    ID
    1
    Name
    WaveL1
    Type
    Pump
    Synchronize
    Disable
    Divide by 10
    Enable
    Initial Off Time
    8 seconds
    On Time
    8 seconds
    Off Time
    0 seconds
    Minimum Intensity
    20%
    Maximum Intensity
    40%

    ID
    2
    Name
    WaveR1
    Type
    Pump
    Synchronize
    Enable
    Divide by 10
    Enable
    Initial Off Time
    0 seconds
    On Time
    6 seconds
    Off Time
    6 seconds
    Minimum Intensity
    20%
    Maximum Intensity
    40%

    ID
    3
    Name
    WaveL2
    Type
    Pump
    Synchronize
    Disable
    Divide by 10
    Enable
    Initial Off Time
    6 seconds
    On Time
    7 seconds
    Off Time
    0 seconds
    Minimum Intensity
    20%
    Maximum Intensity
    50%

    ID
    4
    Name
    WaveR2
    Type
    Pump
    Synchronize
    Enable
    Divide by 10
    Enable
    Initial Off Time
    0 seconds
    On Time
    4 seconds
    Off Time
    4 seconds
    Minimum Intensity
    20%
    Maximum Intensity
    50%

    ID
    5
    Name
    WaveL3
    Type
    Pump
    Synchronize
    Disable
    Divide by 10
    Enable
    Initial Off Time
    5 seconds
    On Time
    5 seconds
    Off Time
    0 seconds
    Minimum Intensity
    0%
    Maximum Intensity
    60%

    ID
    6
    Name
    WaveR3
    Type
    Pump
    Synchronize
    Enable
    Divide by 10
    Enable
    Initial Off Time
    0 seconds
    On Time
    3 seconds
    Off Time
    3 seconds
    Minimum Intensity
    0%
    Maximum Intensity
    60%

    ID
    7
    Name
    WaveL4
    Type
    Pump
    Synchronize
    Disable
    Divide by 10
    Enable
    Initial Off Time
    2 seconds
    On Time
    2 seconds
    Off Time
    0 seconds
    Minimum Intensity
    0%
    Maximum Intensity
    70%

    ID
    8
    Name
    WaveR4
    Type
    Pump
    Synchronize
    Enable
    Divide by 10
    Enable
    Initial Off Time
    0 seconds
    On Time
    4 seconds
    Off Time
    4 seconds
    Minimum Intensity
    0%
    Maximum Intensity
    70%

    ID
    9
    Name
    Burst
    Type
    Pump
    Synchronize
    Disable
    Divide by 10
    Enable
    Initial Off Time
    0 seconds
    On Time
    8 seconds
    Off Time
    16 seconds
    Minimum Intensity
    0%
    Maximum Intensity
    75%

    ID
    10
    Name
    Slow
    Type
    Pump
    Synchronize
    Disable
    Divide by 10
    Disable
    Initial Off Time
    0 seconds
    On Time
    1 seconds
    Off Time
    1 seconds
    Minimum Intensity
    30%
    Maximum Intensity
    35%


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

Similar Threads

  1. Jebao rw8 program help please!!!!!!
    By Rb771978 in forum Apex Programming for Vortech, Tunze, & Other Controllable Pumps
    Replies: 1
    Last Post: 06-01-2016, 22:02
  2. Jebao RW8 Program HELP!!!
    By msylvester99 in forum Apex Programming for Vortech, Tunze, & Other Controllable Pumps
    Replies: 12
    Last Post: 02-08-2016, 08:11
  3. Jebao RW8 Program HELP!!!
    By msylvester99 in forum WAV Powerheads
    Replies: 0
    Last Post: 11-02-2015, 20:23
  4. Review My Program 2x RW8 pumps wanting them to alternate.... but they both stay on.
    By Hfp75 in forum Apex Programming for Vortech, Tunze, & Other Controllable Pumps
    Replies: 11
    Last Post: 04-25-2015, 11:43

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
  •