PACA and Security messages

Discussion in 'C-Bus Wired Hardware' started by martymonster, Aug 26, 2011.

  1. martymonster

    martymonster

    Joined:
    Aug 5, 2004
    Messages:
    162
    Likes Received:
    1
    Can the PACA be programmed via Piced to act when a Security message is transmitted from say a Ness M1 unit?

    That is , when a Security Message from Application 208 is broadcast, can I set up the PACA to do something, such as turn on the lights etc?

    I know that I can have the Ness turn on a dummy group and then have the Paca respond to that, but can it respond to messages from Application 208?

    Martin
     
    martymonster, Aug 26, 2011
    #1
  2. martymonster

    NickD Moderator

    Joined:
    Nov 1, 2004
    Messages:
    1,427
    Likes Received:
    64
    Location:
    Adelaide
    Yep.. have a look at the Inbuilt System IO, and special functions.

    For information on this, search for "security" in the Logic Help.

    Nick
     
    NickD, Aug 26, 2011
    #2
  3. martymonster

    martymonster

    Joined:
    Aug 5, 2004
    Messages:
    162
    Likes Received:
    1
    Thanks,

    Already did a bit of a search but was not sure if the PACA could do it.

    Will now investigate further.
     
    martymonster, Aug 26, 2011
    #3
  4. martymonster

    Ashley

    Joined:
    Dec 1, 2005
    Messages:
    1,548
    Likes Received:
    178
    Location:
    Adelaide, Australia
    This works fine but takes a bit of playing around because the M1 doesn't implement the C-Bus security protocol very faithfully. The best idea is to run the C-Bus diagnostic routine and get the M1 to do it's thing (i.e. arm away etc) and look at the messages you get.

    If you just want simple armed on and off you can just go something like

    once getBoolIBSystemIO("Security Armed State") then
    begin
    SetScene("All Off");
    end;

    once getBoolIBSystemIO("Security Armed State") = false then
    begin
    if (time < sunrise) or (time > sunset) then
    SetLightingLevel("Kitchen Main", 100%, "4s");

    end;
     
    Ashley, Aug 26, 2011
    #4
  5. martymonster

    martymonster

    Joined:
    Aug 5, 2004
    Messages:
    162
    Likes Received:
    1
    Thanks Ashley,
    I actually set up LogMessage over the weekend in Piced and tested a lot of things to see what and when the M1 actually sends.

    I found out what I needed.
     
    martymonster, Aug 29, 2011
    #5
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.