How to receive IR fr 3rd party remotes?
youstra
Posts: 135
in AMX Hardware
I've got an installation where the client wants to use MX-850s in addition to wall-mounted TPs. We've got 3 RF receivers going to the base station in the wire room, which converts back to IR.
The question is how to to get the IR stream INTO the NI4k.
Tech support pointed me to the robustly-priced axd-irplus and axr-irsm (and the Mio Modero IR receiver), which would require me to transfer IR from the MX-850 base station via a stick-on emitter. Huh?
Is there no hard-wire way to do this w/ AMX gear?
Do I need a 3rd party IR->232 or IR->IP?
There's a possiblity of multiple remotes being fired simultaneously, so I was hoping for ~3 conduits into Netlinx
How do other folks accomplish this?
The question is how to to get the IR stream INTO the NI4k.
Tech support pointed me to the robustly-priced axd-irplus and axr-irsm (and the Mio Modero IR receiver), which would require me to transfer IR from the MX-850 base station via a stick-on emitter. Huh?
Is there no hard-wire way to do this w/ AMX gear?
Do I need a 3rd party IR->232 or IR->IP?
There's a possiblity of multiple remotes being fired simultaneously, so I was hoping for ~3 conduits into Netlinx
How do other folks accomplish this?
0
Comments
The ONLY issue with this is the Landmark receiver is it does not offer 255 buttons, but somewhere around 213 or so..
In fact they are on clearance for $80 right now in the sale section.
Kevin D.
Thanks for the feedback. How would I capture the codes? Is there a specific AMX mega remote or do I spit it out of the NI4K somehow?
-Bill
The AMX remote actually only supports 132 discrete IRs (channels to the PMB-IRI). The old Phast remote had four modes of operation (Lights, AV, ...) and each of these could be used to generate a unique IR code from any of the 33 buttons on the remote. Hence, 132 codes is the maximum you can generate and use with the IRI. It is still pretty useful if you are not trying to do a very complicated remote that requires several hundred channels.
There are numerous Pronto files around with the AMX IR codes and I think even IR Edit (and the old IR Files collection that predated IR Edit) have the AMX IR codes captured. You can pull the file from the AMX website also and then emit the IR codes from AMX to capture them into a remote. I think this is how I captured my first set for a Pronto before remotecentral.com had them online.
Kevin D.
Jeff
Granted the AMX would be an easier solution, but given my market I've learned to do a lot for as little as possible.
I use X number of IR channels for source selection, each source only needs a maximum of 40 buttons. Just use SWITCH.CASE for those 40 buttons. So if you had 10 sources, plus your 40 buttons, you still have 82 channels left for volume, lights, global, etc...
Kevin D.
Thanks,
Jeff
Kevin D.
Jeff
I picked up 4 PMB-IRIs and I'm not having luck. Can anyone spot the problem?
I'm using the RF-IRMod module. The AMX site has a PMB-IR driver (not IRI), but when I open the zip and read the .txt file, it says it's for the PLB-RF/PLB-IR. I'm trying it anyway since it's the closest thing.
The devs show up on my system tree and I've renumbered them 6001 - 6004.
The DEFINE_DEVICE section has:
//Infrared Remote Control In (via Universal Remote Control)
dvIRIn1 = 6001:1:0
dvIRIn2 = 6002:1:0
dvIRIn3 = 6003:1:0
dvIRIn4 = 6004:1:0
vdvIRIn1 = 36001:1:0
vdvIRIn2 = 36002:1:0
vdvIRIn3 = 36003:1:0
vdvIRIn4 = 36004:1:0
... the DEFINE_VARIABLE section has this
dev adIRIn[4] = {
vdvIRIn1,
vdvIRIn2,
vdvIRIn3,
vdvIRIn4
}
...module definition includes:
DEFINE_MODULE 'RF-IRMod' mdlIR1(vdvIRIn1, dvIRIn1);
DEFINE_MODULE 'RF-IRMod' mdlIR2(vdvIRIn2, dvIRIn2);
DEFINE_MODULE 'RF-IRMod' mdlIR3(vdvIRIn3, dvIRIn3);
DEFINE_MODULE 'RF-IRMod' mdlIR4(vdvIRIn4, dvIRIn4);
...then I have a channel event like this:
CHANNEL_EVENT[adIRIn,channel.channel] {
ON: {
@ IR Cmd Input ON:', itoa(channel.channel)";
}
OFF: {
@ IR Cmd Input OFF:', itoa(channel.channel)";
}
}
...BUT I get nothin in the notifications or diagnostic tabs when I hit the IRI with some AMX codes.
Any thoughts? I see no support/help/doc on the PMB-IRI on the website.
Thanks for any help.
-Bill
When I send command "VERSION" to the PMB-IRIs, it responds:
Line 3 :: MODULE: VERSION: 1.00 - 23:41:28
Line 4 :: MODULE: MANUFACTURER=AMX; MODEL=PMB-RF/IR; TYPE=RADIO - 23:41:28
For input, I'm using an IR Blaster from a Universal Remote base station (the 300), with an MX-850.
Please - any help would be deeply appreciated.
Kevin D.
What's the best way to get all the valid phast IR codes? Is there some other CCF circulating? Or some master phast remote?
-Bill
Attached is a ZIP file with a complete CCF for the PLB-IR1 IR codes and also the AMX IRL file with the codes for the PLB-IR1 remote control in AMX format. I have used the CCF file that is attached to create Pronto files using most if not all IR codes on a Netlinx system using the PMB-IRI device & module and it works fine. Remember that there are only 132 valid codes on this remote control organized into 4 groups (A/V, Lights, Aux, Comm) of 33 codes each for a total of 132. Hope this helps,
Reese