Home AMX User Forum NetLinx Studio

Axb-rel8

Hello!
I have a problem working with axb-rel8. Can you help with few instruction on how axlink works and also how can i control the relays from axb-rel8?
Thank you!

Comments

  • ericmedleyericmedley Posts: 4,177
    It uses pretty simple 'ON' and 'OFF' commands.

    there are 8 relays, each using a channel.

    So,

    ON[RELAY,1] (* turn relay one on *)
    ON[RELAY,2] (* turn relay two on *)


    Likewise

    OFF[RELAY,1] turns off the relay.

    You can also tie the relay to a variable state and visa versa

    [RELAY,1]=DOOR_SENSOR

    TP_FEEDBACK_FLAG=[RELAY,1]

    Up in the DEFINE_MUTUALLY_EXCLUSIVE section, you can make sure two relays don't both turn on.

    DEFINE_MUTUALLY_EXCLUSIVE

    ([RELAY,1] .. [RELAY,3]) // ONLY ONE RELAY ON AT A TIME.

    That's a few examples.

    There is documentation for it in Netlinx Studio. goto 'Tools' menu and select Software History. You can then scroll down and find the device. The commands will be there. There's also documentation at the AMX site.

    hope it helps.
  • Everything works just perfect!
    Thank you very much!
Sign In or Register to comment.