Home AMX User Forum AMX Technical Discussion
Options

Panel to panel intercom....

Hey all. I know there are topics on here for panel to panel intercom but I still can’t get it working. Wondering if there is a problem with the kitchen panel mic. Here’s what I got.

Kitchen Panel (MXT-200XL-PANi) @ 192.168.1.220
Master Bath Panel (MSD-1001i) @ 192.168.1.210

When I call on either panel, I can talk into the master bath panel and you can hear the audio through the kitchen panel just fine. But when you talk into the kitchen panel, you can not here the audio in the master bath panel.
Here’s my code for intercom:

BUTTON_EVENT [dvTPKITCHEN_MAIN,60] // Call Master Bath
{
PUSH:
{
SEND_COMMAND dvTPKITCHEN_MAIN, "'^ICS-192.168.1.210,9002,9000,2'"
SEND_COMMAND dvTPKITCHEN_MAIN,"'^ICM-TALK'"

    SEND_COMMAND dvTP_BATH, "'^ICS-192.168.1.220,9000,9002,2'"
    SEND_COMMAND dvTP_BATH,"'^ICM-TALK'"
}

}

BUTTON_EVENT [dvTPKITCHEN_MAIN,61] // End Call Master Bath
{
PUSH:
{
SEND_COMMAND dvTPKITCHEN_MAIN, "'^ICE'"
SEND_COMMAND dvTP_BATH, "'^ICE'"
}
}

BUTTON_EVENT [dvTP_BATH,60] // Call Kitchen
{
PUSH:
{
SEND_COMMAND dvTP_BATH, "'^ICS-192.168.1.220,9002,9000,2'"
SEND_COMMAND dvTP_BATH,"'^ICM-TALK'"

    SEND_COMMAND dvTPKITCHEN_MAIN, "'^ICS-192.168.1.210,9000,9002,2'"
    SEND_COMMAND dvTPKITCHEN_MAIN,"'^ICM-TALK'"
}

}

BUTTON_EVENT [dvTP_BATH,61] // End Call Kitchen
{
PUSH:
{
SEND_COMMAND dvTPKITCHEN_MAIN, "'^ICE'"
SEND_COMMAND dvTP_BATH, "'^ICE'"
}
}

Any ideas would be great. Yes, the mic is not muted in the kitchen panel and volumes are up.

Comments

  • Options
    John NagyJohn Nagy Posts: 1,734

    Reverse the panels IP addresses and try again. Does the fail remain with the same panel, implying it is physically bound and not programming?

  • Options

    Thanks for the ideas John. Turns out, after I download any graphics to the panels I must reboot both the panels and then the intercom function works. Not really sure what that's about. Firmware is up-to-date on both panels.

Sign In or Register to comment.