Intercom Page All
Colzie
Posts: 470
FYI.
The example in AMX-PI for the commands necessary to set up paging all panels is incorrect. The RX UDP port in the example is zero for all three panels, but (in my experience, frustration, and several hours lost) must be something not zero.
The above is incorrect. It should be
I've found several other minor typos in the (skimpy) documentation for intercom functionality. You would think for such a high-profile feature there would be better support. Even tech support's official line is "use the module".
That being said, after getting the commands correct, the intercom works very well! I was amazed after wading around in the AMX UI module to look in PI and find there are only 3 real commands for intercom on the TPs (^ICS, ^ICM, ^ICE).
The example in AMX-PI for the commands necessary to set up paging all panels is incorrect. The RX UDP port in the example is zero for all three panels, but (in my experience, frustration, and several hours lost) must be something not zero.
AMX-PI wrote:Example of setting up a multicast call where the first panel is paging two other panels:
SEND_COMMAND TP1, "^ICS-239.252.1.1,9000,0,1"
SEND_COMMAND TP2, "^ICS-239.252.1.1,9000,0,0"
SEND_COMMAND TP3, "^ICS-239.252.1.1,9000,0,0"
The above is incorrect. It should be
Colzie wrote:Example of setting up a multicast call where the first panel is paging two other panels:
SEND_COMMAND TP1, "^ICS-239.252.1.1,9000,9002,1"
SEND_COMMAND TP2, "^ICS-239.252.1.1,9000,9002,0"
SEND_COMMAND TP3, "^ICS-239.252.1.1,9000,9002,0"
I've found several other minor typos in the (skimpy) documentation for intercom functionality. You would think for such a high-profile feature there would be better support. Even tech support's official line is "use the module".
That being said, after getting the commands correct, the intercom works very well! I was amazed after wading around in the AMX UI module to look in PI and find there are only 3 real commands for intercom on the TPs (^ICS, ^ICM, ^ICE).
0
Comments
I was also impressed with the audio quality.
FYI take 2.
The example in the documentation for setting up an intercom call between an MET-ECOM and a touch panel is incomplete. The available <mode> parameters in the documentation are TALK or LISTEN. These work, but not to set up a two-way call. The BOTH command is what is needed.
SEND_COMMAND MET1, "?STREAM-SET 192.168.0.3,9000,9002,audio,BOTH,1?"