MIDI.sendNoteOff not working #229
Olivierdemoustier
started this conversation in
General
Replies: 1 comment 1 reply
-
Stupid me. I had a filter in midi-OX that filters ou all NOTE-OFF's. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
It looks like MIDI.sendNoteOff is not doing anything.
This simple sketch will only send NoteOn. I sniff the midi with midi-ox
#include <MIDI.h>
MIDI_CREATE_DEFAULT_INSTANCE();
void setup() {
MIDI.begin();
}
void loop() {
MIDI.sendNoteOn (55, 10, 11);
delay(400);
MIDI.sendNoteOff (55, 20, 11);
}
Beta Was this translation helpful? Give feedback.
All reactions