typedef enum _IR_COMMAND { DIGIT0 = 0x16, // power off DIGIT1 = 0x0C, // spped 1 (lowest speed ) DIGIT2 = 0x18, // speed 2 DIGIT3 = 0x5E, // speed 3 DIGIT4 = 0x08, // speed 4 DIGIT5 = 0x1C, // speed 5 DIGIT6 = 0x5A, // speed 6 DIGIT7 = 0x42, // speed 7 DIGIT8 = 0x52, // speed 8 DIGIT9 = 0x4A, // speed 9 ( heighest speed ) CH_MINUS = 0x45, // power off CH_PLUS = 0x47, // power on CH100 = 0X1A // triac2 on CH200 = 0X0E // triac2 off PREV = 0x44, // decrese timer per hour max 8 hour NEXT = 0x40, // increse timer per hour max 8 hour PLAY = 0x43, // timer on VOL_MINUS = 0x07, // decrese speed VOL_PLUS = 0x15, // increse speed EQ = 0x09 // timer off }IR_COMMAND;