Ultimate NORD Stage MIDI Pedal Board

General Discussion of the Nord Stage (EX), Nord Stage 2 (EX), Nord Stage 3, and Nord Stage 4 Synths, FAQ, Troubleshooting etc.
Merlimau
Posts: 72
Joined: 24 Sep 2013, 16:48
10
Your Nord Gear #1: Nord Stage 2
Has thanked: 7 times
Been thanked: 20 times

Re: Custom, comprehensive "Nord Stage Pedal Board"

Post by Merlimau »

Very cool. Thanks for sharing.

When you connect both MIDI plugs (MIDI-IN / MIDI-OUT) into the Stage, can you still use the USB MIDI as well to send data? For instance to use Setlistmaker in parallel.
Do you have some rubber under the carbon plate to avoid slide away?

Does the Arduino can receive MIDI data from the Stage? If yes you can send a program change by turning on the Stage program knob and then you know on which program you are. From there the Arduino program can generate a MIDI signal for program up/down.
These users thanked the author Merlimau for the post:
guentergunter
guentergunter
Posts: 20
Joined: 19 Aug 2017, 20:32
6
Has thanked: 2 times
Been thanked: 12 times

Re: Custom, comprehensive "Nord Stage Pedal Board"

Post by guentergunter »

Merlimau wrote:Very cool. Thanks for sharing.
You're :welcome:
Merlimau wrote:When you connect both MIDI plugs (MIDI-IN / MIDI-OUT) into the Stage, can you still use the USB MIDI as well to send data? For instance to use Setlistmaker in parallel.
I do not use USB-MIDI at all (although the Arduino has native USB-MIDI support). That’s since the Stage doesn’t have a MIDI-USB-IN functionality (and honestly I don’t know any keyboard with such a feature at all).

Anyway: Expanding an USB-Socket to the case (example), you can easily add that feature at least to the pedal board.
Merlimau wrote:Do you have some rubber under the carbon plate to avoid slide away?
No, since I want it to be as flat as possible (the carbon plate is just 3mm, but still indestructible :shock: ).
I will add two metal cords to the holes in the lower edges with clamps for my Spider Stand.
Merlimau wrote:Does the Arduino can receive MIDI data from the Stage? If yes you can send a program change by turning on the Stage program knob and then you know on which program you are. From there the Arduino program can generate a MIDI signal for program up/down.
First: The Arduino can receive any MIDI data and do whatever programmable as a reaction.

Your is idea is great :idea: , but with one drawback.
The problem is with the stage. It doesn’t count program numbers consecutively when in Song/Live Mode.
(but I might be wrong on that, since I didn’t have the time to dig totally into sound programming)

If I’m wrong, I will add your suggested feature shortly :thumbup:
guentergunter
Posts: 20
Joined: 19 Aug 2017, 20:32
6
Has thanked: 2 times
Been thanked: 12 times

Re: Custom, comprehensive "Nord Stage Pedal Board"

Post by guentergunter »

I just encountered a problem with the "pedal noise" feature sounding much to loud.
This was due to a non-linear interpretation of the damper pedal position within the original Nord Triple pedal.

The non-linearity is given by the electric resistance found out by user maxpiano (THREAD) and is as follows:

[not_pushed -> ... -> pushed]
(infinite) -> 10 kΩ -> ( 10 kΩ || 4700 Ω ) -> ( 10 kΩ || 4700 Ω || 2200 Ω ) -> ( 10 kΩ || 4700 Ω || 2200 Ω || 820 Ω )

So, the overall resistance steps of the original NORD pedal are:

[not_pushed -> ... -> pushed]
(infinite) -> 10 kΩ -> 3197 Ω -> 1303 Ω -> 503 Ω


Honestly, all that ain't necessary to be calculated...
After two days of experimenting, I found out how to reproduce the pedal noise via MIDI and it's working like a charm.
See program code in the first post :thumbup:
Last edited by guentergunter on 16 Aug 2020, 19:35, edited 8 times in total.
These users thanked the author guentergunter for the post (total 3):
maxpiano, Mr_-G-, waltwagner
fjzingo
Posts: 118
Joined: 13 Sep 2013, 08:42
10
Your Nord Gear #1: Nord Stage 2
Your Nord Gear #2: Nord Electro 4
Has thanked: 2 times
Been thanked: 37 times

Re: Custom, comprehensive "Nord Stage Pedal Board"

Post by fjzingo »

Really cool project, congrats to the pedal board and thanks for pointing out Arduino!
These users thanked the author fjzingo for the post:
samuele74
ericL
Patch Creator
Posts: 1196
Joined: 23 Jun 2012, 00:36
11
Your Nord Gear #1: Nord Stage 2
Your Nord Gear #2: Nord Stage 3
Has thanked: 422 times
Been thanked: 614 times

Re: Custom, comprehensive "Nord Stage Pedal Board"

Post by ericL »

This is super awesome!!! You really put in a lot of time and effort on this!
I have a related project that is not nearly as complex, but has a similar end result. Posting in a separate thread.
Nords: NE2, NS2 88, NS3 Compact x 2
Live rig: NS3, Vent, Radial KL-8, Shure PSM-900 IEM Rig, UE18 & UE7 IEMs.
Studio: Hammond A-101 & Leslie 122, Yamaha CP-80, Yamaha S90, NS2, DSI Prophet-6, Vent II, Roland JX-8P.
Merlimau
Posts: 72
Joined: 24 Sep 2013, 16:48
10
Your Nord Gear #1: Nord Stage 2
Has thanked: 7 times
Been thanked: 20 times

Re: Custom, comprehensive "Nord Stage Pedal Board"

Post by Merlimau »

guentergunter wrote:The problem is with the stage. It doesn’t count program numbers consecutively when in Song/Live Mode.
Try what MIDI date you get in Song/Live Mode.

I meant that you get the program number back from Stage like:
Bank MSB: 0
Bank LSB: 1 (Bank B)
Program: 2 (Program 3)

And then you just count up the program to 3 (new: Bank B, program 4) or down.

When you reach Bank LSB 1, program 99 you go to the next Bank LSB (Bank C)

Attached the MIDI program conversion table for Setlismaker.
Attachments
$NS2-SetListMaker-ConvertionTable.pdf
(26.79 KiB) Downloaded 172 times
anotherscott
Posts: 3444
Joined: 07 Jan 2011, 04:50
13
Has thanked: 38 times
Been thanked: 1079 times

Re: Custom, comprehensive "Nord Stage Pedal Board"

Post by anotherscott »

guentergunter wrote:the Stage doesn’t have a MIDI-USB-IN functionality (and honestly I don’t know any keyboard with such a feature at all).
Korg Kronos.
Last edited by anotherscott on 04 Nov 2017, 14:02, edited 1 time in total.
guentergunter
Posts: 20
Joined: 19 Aug 2017, 20:32
6
Has thanked: 2 times
Been thanked: 12 times

Re: Custom, comprehensive "Nord Stage Pedal Board"

Post by guentergunter »

ericL wrote:This is super awesome!!! You really put in a lot of time and effort on this!
I have a related project that is not nearly as complex, but has a similar end result. Posting in a separate thread.
Maybe you wanna share the link? Couldn't find it acually... ;)
guentergunter
Posts: 20
Joined: 19 Aug 2017, 20:32
6
Has thanked: 2 times
Been thanked: 12 times

Re: Custom, comprehensive "Nord Stage Pedal Board"

Post by guentergunter »

anotherscott wrote:
guentergunter wrote:the Stage doesn’t have a MIDI-USB-IN functionality (and honestly I don’t know any keyboard with such a feature at all).
Korg Kronos.
Thanks for clearing that out :shifty:
If ever I buy me a Kronos and continue using my pedal board, then it's 3 lines of code and an additional USB connector for USB-MIDI-Support.
I once built a first version of such a pedal board (with less pedals) for the usage with MainStage. Here I already used USB-MIDI - quite easy to handle...
guentergunter
Posts: 20
Joined: 19 Aug 2017, 20:32
6
Has thanked: 2 times
Been thanked: 12 times

Re: Custom, comprehensive "Nord Stage Pedal Board"

Post by guentergunter »

Merlimau wrote:
guentergunter wrote:The problem is with the stage. It doesn’t count program numbers consecutively when in Song/Live Mode.
Try what MIDI date you get in Song/Live Mode.

I meant that you get the program number back from Stage like:
Bank MSB: 0
Bank LSB: 1 (Bank B)
Program: 2 (Program 3)

And then you just count up the program to 3 (new: Bank B, program 4) or down.

When you reach Bank LSB 1, program 99 you go to the next Bank LSB (Bank C)

Attached the MIDI program conversion table for Setlismaker.
That's easily implementable, but then I would need an additional MIDI-Cable, replacing the TRS-cable :crazy:
So, in the end I'm still stuck with two cables due to the lack of program up/down via MIDI CC support from Nord...
Post Reply