Since the process of changing the MIDI CC on my Crumar D9U was a bit challenging (un-known) for me, I came to think that if someone else is considering this product, I’ll be happy to give an explanation of the process:
First of all you need to download and install a program called Arduino IDE, which is a software that allows you to write program-codes, and program circuit-boards within the Arduino environment.
The program can be downloaded and installed from:
https://www.arduino.cc/en/Main/Software
Then enter this URL
https://www.crumar.it/default.asp?a=page&p=D9U
On the bottom of this page, you are directed to a Zip-file download, containing complete documentation and sketches for the Crumar D9U and Arduino card.
Open the PDF called “Crumar D9U”. Here you will find useful information.
First of all, there are a couple of libraries you will need to install in order for the Arduino to communicate properly with the D9U:
https://github.com/FortySevenEffects/ar ... di_library
And
https://github.com/arduino-libraries/MIDIUSB
Download the Zips of these two libraries and save them to a folder on your computer.
Now its time to start the Arduino IDE. First thing to do is to install the two newly downloaded libraries into Arduino, by using the IDE library functions. Do a re-start of the program before proceeding.
Now connect the D9U to your computer, and from the TOOLS menu, select BOARD -> Arduino Leonardo. From the same TOOLS menu, make sure the selected PORT points to Leonardo.
Now its time to open the sketch called Crumar_D9U.ino This is located in the very first Zip file you downloaded from Crumar website, the folder is: Crumar_D9U/Arduino/Crumar_D9U
When you open this sketch (opens in Arduino), you will see this text:
//////////////////////////////////////////////////////////////////// // This is where you can define your CC numbers for the Bank 0 or 1 int CCMap[2][9] =
{
{ 12, 13, 14, 15, 16, 17, 18, 19, 20 }, // Upper drawbars
{ 21, 22, 23, 24, 25, 26, 27, 28, 29 } // Lower drawbars
Simply change the numbers, to the ones corresponding with the drawbars on the Nord Stage:
16, 17, 18, 19, 20, 21, 22, 23, 24
I used the same settings on the Upper and Lower drawbars.
Then you are good to go. Transfer the sketch with new MIDI CC to the D9U. This is done by clicking the icon with the arrow pointing right. This will compile the sketch and upload it to the board.
Now power up the D9U with a Cellphone charger as power-source, and connect it to the Nord Stage using a TRS to MIDI Type B cable:
https://www.midi.org/articles-old/updat ... din-cables
The Crumar D9U should now send correct MIDI CC to your synth, and you can use it as a drawbar-controller on your Nord Stage.