None
frac32.positive note-on velocity
frac32.positive note-off velocity
frac32.positive polyphonic aftertouch
frac32.bipolar midi note number
bool32 key pressed?
spinner startNote
spinner endNote
int8_t _note;
uint8_t _gate;
uint8_t _velo;
uint8_t _rvelo;
uint8_t _touch;
_gate = 0;
_note = 0;
_touch = 0;
outlet_note = _note << 21;
outlet_gate = _gate << 27;
outlet_velocity = _velo << 20;
outlet_touch = _touch << 20;
outlet_releaseVelocity = _rvelo << 20;
if ((status == MIDI_NOTE_ON + attr_midichannel) && (data2)) {
if ((data1 >= attr_startNote) && (data1 <= attr_endNote)) {
_velo = data2;
_note = data1 - 64;
_gate = 1;
}
} else if (((status == MIDI_NOTE_ON + attr_midichannel) && (!data2)) ||
(status == MIDI_NOTE_OFF + attr_midichannel)) {
if (_note == data1 - 64) {
_rvelo = data2;
_gate = 0;
}
} else if ((status == attr_midichannel + MIDI_POLY_PRESSURE) &&
(data1 - 64 == _note)) {
_touch = data2;
} else if ((status == attr_midichannel + MIDI_CONTROL_CHANGE) &&
(data1 == MIDI_C_ALL_NOTES_OFF)) {
_gate = 0;
}