Home AMX User Forum AMX Technical Discussion
Options

Virtual Panels, TP3 Gen Channels, What will work?

I have a system with 4 panels and an AXR-IRSM+

These devices are in a device array - dvALLTP.

Most of this condominium operates from panels, but in the rear bedrooms, for monetary reasons, I am using color prontos, which use AMX IR codes and IR receivers in the rooms in their Russound keypads to pass the IR to the AXR-IRSM+ to get the control back from the russound to AMX. The russound does not send a serial string when the keypad transport buttons are pressed, so this convoluted method is necessary to get the input to amx from the keypads.

The question I have is this


The AXR-IRSM+ can only use 255 channels like the G3 Panels.

Due to my lack o' planning I am using channels in the 1500 range to control some cable boxes that are distributed via the russound.


Could I do which of the following:

1:

Use sub 255 channels to DO_PUSH 1500 on the AXR-IRSM+? That is to say are there virtual channels that I can use or will this be rejected because the AXR-IRSM+ only has 255 channels?

2:

Create an additional Virtual Panel, add it to the array, then do_Push channels 1500+ on the virtual panel, with sub 255 channels on the AXR-IRSM+

I dont want to do_push on real panels because this would screw up my feedback on my panels and the 1500 series buttons operate a cable box (4 of them) depending on which room is selected on the panel, which doesnt occur on the AXR-IRSM+.

Thanks

Rolo

Comments

  • Options
    Spire_JeffSpire_Jeff Posts: 1,917
    Why not just add the AXD_IRSM+ device to the existing events?

    For Example:

    BUTTON_EVENT[dvIR_DEVICE, 20]
    BUTTON_EVENT[dvALLTP, 1520]
    {
    PUSH:
    {
    Do something....
    }
    }
  • Options
    rolorolo Posts: 51
    Because the code is already doing math/room tracking based on the other button numbers...I know...should have thought of this ahead of time...


    Thanks

    Rolo
Sign In or Register to comment.