For the ones who are interested here's an example of a piece of denon output code.
- Code: Select all
<mapping>
<control alias="fam(Player)[0x1].Locator1Control" value="true"/>
<MIDI type="CC" parameter="0x4a" channel="0x1" value="0x11"/>
</mapping>
Behind the control alias you have to put the function (e.g.
Locator1Control) Don't forget to change the number to
[0x2] if you want to map a function from the right deck. I did not change the '
fam(player)' part.
Value has to be
true or
false, true= led on, false=led off.
MIDI type is
CC, not 'note' as in most MIDI controllers.
The parameter has to be
0x4a (led on),
0x4b (led of) or
0x4c (led blink).
Chanel has to be the chanel you use you controller with. (
0x1 =chanel 1,
0x2 =Chanel 2)
The second '
value' is the adress of your led. It can be found in your user manual (or the one on the denon website

) (It looks like
0x11)
So you have to make 2 mappings for each led. One to put it on and one to put it out.
I hope this is usefull to somebody out there
