This 'unofficial' Forum is dedicated to the Clavia Nord Keyboards, including the Nord Stage, Nord Electro and Nord Piano. Discuss any issues around Nord's keyboards, share your favorite patches, samples, and music. We are not affiliated with Clavia! https://www.norduserforum.com/
A couple of months ago I asked on this forum if someone DIY'd a pitch bend. Some of you suggested an app (thanks for that), but nothing beats an actual physical controller.
The Electro 6 supports pitch bend when the engine is assigned to an external keyboard. The Teensy inside this box (which can be programmed with the Arduino IDE) Takes the Electro's MIDI out, applies pitchbend and routes it back to the Nord's MIDI in on a different channel. Now the Nord thinks it's being played by an external keyboard, while it's actually playing itself.
I've also implemented vibrato over midi, which can be controlled with the Y axis of the pitch stick and the two knobs, one for sensitivity and the other for speed.
If someone else wants to give it a try, I'm happy to provide more technical details and the Arduino code.
Re: I made a DIY pitch / mod stick
Posted: 06 Oct 2021, 15:46
by florence
very nice
just the color is not corporate
Re: I made a DIY pitch / mod stick
Posted: 06 Oct 2021, 17:54
by ericL
Nice work!
Re: I made a DIY pitch / mod stick
Posted: 06 Oct 2021, 19:26
by Leo Castro
Woow!! Very well done.
Re: I made a DIY pitch / mod stick
Posted: 07 Oct 2021, 00:19
by deenigewouter
florence wrote:very nice
just the color is not corporate
Thanks! And yes, corporate would like to have a word. I looked up how to anodize aluminium (apparently even WikiHow has a guide) but I'm not messing around with a tub of battery acid charged at 200+ watts in my dorm room .
Re: I made a DIY pitch / mod stick
Posted: 07 Oct 2021, 00:31
by cgrafx
You don’t want to anodize, you want to do powder coating.
Anodizing is fairly translucent. Powder coating is fully opaque.
But color scheme aside, very nicely done.
Re: I made a DIY pitch / mod stick
Posted: 07 Oct 2021, 19:57
by pterm
Excellent! Well done and thank you for sharing.
Do you know what the current consumption is and did you tried to power it off the Midi Out's pin 4 "5V" pin?
Your build looks very clean and well-made. --The only improvement I thought of was to try eliminating the external power feed (if possible).
Re: I made a DIY pitch / mod stick
Posted: 07 Oct 2021, 21:57
by ericL
pterm wrote:Excellent! Well done and thank you for sharing.
Do you know what the current consumption is and did you tried to power it off the Midi Out's pin 4 "5V" pin?
Your build looks very clean and well-made. --The only improvement I thought of was to try eliminating the external power feed (if possible).
Unless Nord has changed something, their MIDI out has not ever carried power. Way back when I used a Voce MIDI Drawbar with my NE2 via a MIDI Solutions box that would translate the conversation between boxes, I needed to use a separate power supply box for the MIDI Solutions box. Also, I had the Ocean Beach drawbar module in use with my NS2. The guy that built these incorporated a 9V battery inside the drawbars to accommodate the lack of power coming from the Nord. I wonder if this pitch / mod stick could be powered via 9V instead of separate external power?
Re: I made a DIY pitch / mod stick
Posted: 08 Oct 2021, 00:03
by deenigewouter
cgrafx wrote:You don’t want to anodize, you want to do powder coating.
Anodizing is fairly translucent. Powder coating is fully opaque.
But color scheme aside, very nicely done.
I haven't thought of that, thanks! Perhaps a local handyman is willing to give it a shot. I do prefer the metal over a 3D printer enclosure though and don't really mind that it looks unbranded. As long as it can take a beating.
Re: I made a DIY pitch / mod stick
Posted: 08 Oct 2021, 00:21
by deenigewouter
ericL wrote:
pterm wrote:Excellent! Well done and thank you for sharing.
Do you know what the current consumption is and did you tried to power it off the Midi Out's pin 4 "5V" pin?
Your build looks very clean and well-made. --The only improvement I thought of was to try eliminating the external power feed (if possible).
Unless Nord has changed something, their MIDI out has not ever carried power. Way back when I used a Voce MIDI Drawbar with my NE2 via a MIDI Solutions box that would translate the conversation between boxes, I needed to use a separate power supply box for the MIDI Solutions box. Also, I had the Ocean Beach drawbar module in use with my NS2. The guy that built these incorporated a 9V battery inside the drawbars to accommodate the lack of power coming from the Nord. I wonder if this pitch / mod stick could be powered via 9V instead of separate external power?
There is a guy who built an entire polyphonic synthesizer the size of a midi connector that siphoned power from MIDI out. I really recommend the video he made. The 5ma current however is not enough to drive the Teensy 4 (which is way overkill for a project like this, but it was cheap and has USB MIDI support which made it easier to test the feasibility of this project). At a clock rate of 600Mhz the Teensy 4.0 draws around 100ma of current, but I underclocked it heavily for thermal reasons. The optocoupler, MIDI out and the 4 10k potentiometers also draw some current albeit very little. If that man can run a polyphonic synthesizer with 5ma of current it is probably possible, but I doubt this would be achievable with a Teensy or Arduino,
Stealing current from the Nord, if it even supplies it, also makes it impossible to use an optocoupler which is required by the midi standard (don't quote me on this, I'm don't hold a degree in electronic circuits). An optocoupler isolates the ground of the MIDI out sender to the MIDI in receiver and eliminates ground loops. The optocoupler circuit I replicated is detailed here
It currently runs off a 5v barrel plug. I thought of incorporating a chargeable battery or 9V battery and it certainly is possible, but the enclosure I have is too small to fit either one. The joystick assembly occupies the entire empty space on the last picture. I'm also prone to feature creep in my projects, so I wanted to start simple. I might redo this project later with a higher quality joystick, perhaps one the drone racing folks use or a replacement part of existing synths. Maybe even the famous Nord pitch stick, who knows.