axcent II
Thomas Hayes
Posts: 1,164
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.)
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.)
0
Comments
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]
}
}
}