We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 217d083 commit d458dacCopy full SHA for d458dac
res/validator/validate.py
@@ -143,6 +143,14 @@ def main():
143
midiInterface.listenerCallback = tester.handleMidiInput
144
145
tester.checkThru([Midi.NoteOn, 64, 80])
146
+ tester.checkThru([Midi.AfterTouchChannel, 1])
147
+ tester.checkThru([2])
148
+ tester.checkThru([3])
149
+ tester.checkThru([Midi.NoteOn, 64, 0])
150
+ tester.checkThru([65, 127])
151
+ tester.checkThru([65, 0])
152
+ tester.checkThru([66, 127])
153
+ tester.checkThru([66, 0])
154
155
#lib = ArduinoMidiLibrary()
156
#lib.install()
0 commit comments