Connect one touch panel to two individual masters
yanbin
Posts: 86
in AMX Hardware
Can one Touch Panel connect to two individual masters? something like channel port 1 connect to master 1, channel port 2 connect to master 2, but master 1 and master 2 totally not connect together.
0
Comments
But you can do something like this:
In Master 1 Code: (system ID = 1)
In Master 2 Code: (system ID = 2)
And you Will have to have the masters talking to each other via the URL List.
At that point, just write events for dvTPMaster1 in the Master1 code, and dvTPMaster2 in the Master2 code.
Your right,
However, Consider this,
You have 5 seperate rooms/masters all controlling only thier room's equipment. Every room has controlable lighting in them. So instead of having all 5 masters with 5 sets of code doing nearly the exact same thing, Why not use a 'dedicated' master for the lights and have each room's panel point to the code on the 'Lights' master.
Also, The limitation to the AXLink bus is that the TOTAL cable length of all legs must not exceed 3000 feet. In my situation, the lighting controller is over 5000 ft away from the farthest room.
Are you using G3?
And KennyProgram, about your comment on using a dedicated master for lights is offcourse a good solution, i would do the same, but considering topic starters first comment
it would render your solution impossible
If you're referring to y-splicing the AXLink connection (1 touch panel y-d to two separate masters) I'd say no. you're going to get all sorts of collisions on the AxLink buss between the two masters.
The easiest solution is to put both Masters (assuming we're talking about NetLinx) on an IP network and do as suggested. I do this all the time. there are times when an existing customer wants to add a media room to a system. Rather than bust out a bunch of drywall to run serial/IR/etc... control cables to the new location, I can fish one CAT5 and use an NI700 a the location. It'll have no code in it. It's just another master that provides a few RS-232 and IR ports. I put the device in the main code as
dv_Pool_DVD = 5001:02:1
the only thing you have to do is make sure the masters are communicating with each other.
Another less eligant way to connect the roving TP is to connect the two masters via serail cable and create a communications module between the two. I'd do this if one of the masters was an old school AXCESS system. A button press from the zone of the TP that you wanted to go to the other master would result in a string that the other master could respond to.
So:
Netlinx system
BUTTON_EVENT[TP's other zone,XXX}
{
PUSH:
{
SEND_STRING OTHER_MASTER_SERIAL_PORT,'BUTTON PUSH XXX',$0D
}
RELEASE:
{
SEND_STRING OTHER_MASTER_SERIAL_PORT,'BUTTON RELEASE XXX',$0D
}
}
Then put code in on the other master to convert this to whatever you want it to do.
Hope that helps.
ejm