Right out of the box I plugged the jD-Xi into my PC and started up Virtual DJ (Windows) and it showed my device in the controllers section. In this controllers tab I would be able to touch a note on my midi-keyboard and it would show up in VDJ controller key sensor. It was great. Now I created a custom map which enables me to send midi to my device, which works great but I can't get it to work both ways. This means it now doesn't detect in the controllers tab what key I'm pressing on the midi keyboard:
Here is my device file so far:
Here is my device file so far:
<device name="2- JD-Xi" author="SOSTRAX" description="jD-Xi Crossover Synth" version="800" type="MIDI" vid="0x0582" pid="0x01A1" >
<audio description="jD-Xi Audio" input="1" output="1" mixer="yes" mic="no" vid="0x0582" pid="0x01A1" asio="JD-Xi" />
<!-- Buttons-->*
<led note="0x24" channel="0" name="0-BUTTON36" />
<led note="0x28" channel="0" name="0-BUTTON40" />
</device>
geposted Thu 06 Apr 17 @ 12:42 pm
You defined only two led outputs. You need to define the inputs as well.
So, more or less you need to do it like this:
<button note="0x24" channel="0" name="BUTTON_36" />
<led note="0x24" channel="0" name="LED_36" />
So, more or less you need to do it like this:
<button note="0x24" channel="0" name="BUTTON_36" />
<led note="0x24" channel="0" name="LED_36" />
geposted Thu 06 Apr 17 @ 6:28 pm