SparkFun Forums 

Where electronics enthusiasts find answers.

Have questions about a SparkFun product or board? This is the place to be.
By Smith
#194715
I am using the WavTrigger to play drums sequenced from Cubase.

I currently have two different drum sets loaded to the WavTrigger (shown below) I placed switches on trigger 1 and trigger 2 and then set them to Midi bank up and Midi bank down(code below).

The first set of drums plays fine but when I press bank up the mapping of the second set is all wrong instead of the kick being on C1 it slides down the scale to G#-2 and maps the sounds starting from that note. Am I missing something really simple, this is driving me nuts!

Any help appreciated cheers :)


Bank one:
036_kick.wav
037_rimshot.wav
039_clap.wav
040_snare.wav

Bank two:
136_kick.wav
137_rimshot.wav
139_clap.wav
140_snare.wav

#MIDI 1
#TRIG 01, 1, 0, 1, 1, 1, 10, 0, ,
#TRIG 02, 1, 0, 1, 1, 1, 11, 0, ,
********************************************************************
This file was generated by the WAV Trigger Init File Maker v1.20
It is only required if you wish to over-ride default settings. You
may add your own comments below this line -->
User avatar
By robertsonics
#194752
As of firmware v1.28, the MIDI Note Number mapping changed to allow for a full 128 notes per bank, so the Note Number to Track Number equation is:

Track Number = (MIDI Channel * 128) + (MIDI Bank Number * 128) + MIDI Note Number.

So I believe your Bank 2 Kick wants to be "164_kick.wav", and so on. See the MIDI Implementation section of the WAV Trigger On-line User Guide.