Home AMX User Forum NetLinx Studio

AXB-IRS4

Anybody have experience with AXB-IRS4 with NI-3100 Controller . I have first time experience with this.
I use normal netlinx code Pulse [device, channels] .AXB-IRS4 ir port led is giving status. But on device no any effect . when I try to read user manual the command sound is different.
Example:
SEND_COMMAND 2, "'CH',18"
I did not unterstant how is its work.

Comments

  • ColinColin Posts: 51
    AXB-IRS4

    The unit should appear in your Online device tree, eg: 85 = IR port 1, 86 = IR port 2, 87 = IR port 3, 88 = IR port 4. Define & load each device with the required IR File then
    Pulse[device,channel]

    Hope this helps
  • The CH command is used to dial a channel on a tuner that is IR controlled. Your example would dial channel 18 on the tuner by pulsing channel 11, channel 18 and then pulsing ENTER which is channel 21 (I think) To accomplish with without using this command you would need to do this:

    pulse[dvIRdevice,11]
    wait 5 pulse[dvIRdevice,18]
    wait 10 pulse[dvIRdevice,21]

    The AXB-IRS4 also has dipswitch configurations on it. Check out the manual online and AMX-PI for more information.
  • Thanks every boday i found problem in my AXB-IRS4 dipswitch configurations. now its working fine.
Sign In or Register to comment.