|
For steering wheel volume buttons :
add this at the end of the IBUSCOMM.INI file :
[ID:STW_PLUS_PRES]
MsgTemplate="50046832111F"
Label="S. Wheel + Press"
Parse=True
KeyboardMap="{+}"
[ID:STW_MINUS_PRES]
MsgTemplate="50046832101E"
Label="S. Wheel - Press"
Parse=True
KeyboardMap="{-}"
This will declare 2 msg. Set the right key you want to map (I have
set these to "-" and "+" here).
Then Add these 2 lines in the [IBusIdsDefine] section
STW_PLUS_PRES=159
STW_MINUS_PRES=160
You should be able to catch steering wheel +/- buttons pressed
messages.
|