Hey,
have you got selected the Mideck as Input Device for MIDI unter options? or how could I understand your sentence?
joostenw wrote: The Mixdeck is recognized by Mixvibes Pro, because under device Mixvibes response with: Numark Mixdeck MIDI.
You can test if it is respondig: Open the new created file for your MIDI map with the button edit and add a new Line. When selected push any button on the Numark. When there appears a MIDI note in the first row it works. If there is no MIDI note there is something wrong.
So create push and turn reglers you go in the file seting up a new line with the command like player 1 gain -> MIDI note without the last 2 bits for examle #f2 a1. This is the base tone and #f2 a1 00 to #f2 a1 FF is the highest bit.
If you have sliders there you also delete the last two bits that only stands #b0 01 or something else and set the flags "INC NOUP".
For example a Button like cue:
- Code: Select all
#90 33 7f CUE 1 1
#90 33 0 CUE 1 0
Example Gain-controll: (rotating button)
- Code: Select all
#b0 d GAIN 1
#b0 e GAIN 2
Eample Slider like Pitch-Slider:
- Code: Select all
#90 38 PITCHSELECT 1 1 INC NOUP
#90 3f PITCHSELECT 2 1 INC NOUP
#b0 b PITCHALL 1 0.0
#b0 c PITCHALL 2 0.0
Creating the big Jogs:
- Code: Select all
// JOG left
#b0 19 JOG2 1 0 800 JOGPOLLING JOGTIMER INVERSE JOGRELEASE
// JOG right
#b0 18 JOG2 2 0 800 JOGPOLLING JOGTIMER INVERSE JOGRELEASE
These are samples the MIDI note is not correct you must set the right MIDI note!
I hope it will help you.
regards
Christian