I wonder if it's possible to create code (like this) for using with RC-10 infrared remote from Blaupunkt.
Something like this might work. I thought I read the signals were repeated every 10ms, but now I can't find that, so I could be wrong about that.

Code:
LED=1
delay var word
i var byte

vol_up:
    delay = 2600
    gosub ir_out

ir_out:
    for i = 1 to 10 'sends out command 10 times
        led=0
        pauseus delay
        led=1
        pauseus delay
        led=0
        pauseus 660
        led=1
        pause 10    'wait 10ms before repeating
    next i
return