Axb-rel8
cristibad
Posts: 69
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!
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!
0
Comments
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.
Thank you very much!