Home AMX User Forum AMX General Discussion
Options

axcent II

Hi Everyone.
I had an axcent II given to me for my home system and I have most of it working. I just have a few functions that are not working. To control the IR devices I created a 'Select/active' code block but for what ever reason it doesn't seem to work. Does anyone know if the 'select/active' commands are valid for an axcent II ? Also will IRedit work with the axcent II. I'll try to place the code block later today for review( encase I screwed up the syntax.)

Comments

  • Options
    You might want to check the firmware.... I have had some problems with the AxcentII and I was able to resolve it by upgrading to newer firmware??? What ver. does it have?
  • Options
    v 3.731
    Here is a copy of the IR code block that I'm using. It works on my Netlinx system.

    IF(PUSH_CHANNEL<=130)
    {
    SELECT
    {
    ACTIVE(IR_CONTROL=SAT_1):
    {
    PULSE[SAT1,PUSH_CHANNEL]
    }
    ACTIVE(IR_CONTROL=SAT_2):
    {
    PULSE[SAT2,PUSH_CHANNEL]
    }
    ACTIVE(IR_CONTROL=DVD_RR):
    {
    PULSE[DVD,PUSH_CHANNEL]
    }
    ACTIVE(IR_CONTROL=VHS_RR):
    {
    PULSE[VCR,PUSH_CHANNEL]
    }
    ACTIVE(IR_CONTROL=TV_RR):
    {
    PULSE[TV,PUSH_CHANNEL]
    }
    ACTIVE(IR_CONTROL=THX_RR):
    {
    PULSE[THX,PUSH_CHANNEL]
    }
    }
    }
Sign In or Register to comment.