How to emulate a PICED style "pulse" on for a GA in a SHAC scene

Discussion in 'C-Bus Automation Controllers' started by Marine Boy, Sep 23, 2018.

  1. Marine Boy

    Marine Boy

    Joined:
    May 17, 2018
    Messages:
    14
    Likes Received:
    0
    Changing over an old CTC to SHAC and the motorised shades have a scene in PICED that pulses the GA on for a set time period.

    Is there a simple way to achieve a similar function in the SHAC?

    The existing system uses the 4 channel changeover relay for the motors and the pulse/time function simply disconnects the mains power after travel. Don't really want to swap out to shutter relays.

    TIA for advice and support.
     
    Marine Boy, Sep 23, 2018
    #1
  2. Marine Boy

    NickD Moderator

    Joined:
    Nov 1, 2004
    Messages:
    1,420
    Likes Received:
    62
    Location:
    Adelaide
    There is a "Pulse C-Bus Group" function in the logic scripting.

    I haven't tried it myself, but if you were to just turn the group on as part of the scene, you could then have an event based script triggered off the same group, which pulses it for the required time, which would just end up turning it off at the end of the pulse.

    Nick
     
    NickD, Sep 24, 2018
    #2
  3. Marine Boy

    Marine Boy

    Joined:
    May 17, 2018
    Messages:
    14
    Likes Received:
    0
    Thanks Nick for the info. Will check the sripting options and see if I can get it work.
     
    Marine Boy, Sep 24, 2018
    #3
  4. Marine Boy

    Marine Boy

    Joined:
    May 17, 2018
    Messages:
    14
    Likes Received:
    0
    Got this to work fine using the following script:


    if (GetTriggerLevel(17) == 255) then
    -- Set group 'Kitchen' on application 'Lighting' in network 'Local' to 255 over 4 seconds and after 5 seconds and reset to off.
    PulseCBusLevel('Local', 'Lighting', 'Kitchen', 255, 4, 5, 0)
    end


    Might be helpful for others.

    Thanks Nick for pointing me in the right direction.
     
    Last edited: Oct 4, 2018
    Marine Boy, Oct 4, 2018
    #4
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.