diff options
| author | Zach DeCook <zachdecook@librem.one> | 2022-12-16 18:47:22 -0500 |
|---|---|---|
| committer | Zach DeCook <zachdecook@librem.one> | 2022-12-16 18:47:22 -0500 |
| commit | aa126580f6b1a3281378c495754f8f8be97f48c1 (patch) | |
| tree | a6af52d36e19d1b550e72fa9df51f98ed57c0596 /MIDI.ino | |
| parent | 37cb602acfc6e28dbd163071ecc77d1d362ab1f8 (diff) | |
| download | HexBoard-aa126580f6b1a3281378c495754f8f8be97f48c1.tar.gz | |
v1.1: un-refactor
Diffstat (limited to 'MIDI.ino')
| -rw-r--r-- | MIDI.ino | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/MIDI.ino b/MIDI.ino deleted file mode 100644 index 77c786b..0000000 --- a/MIDI.ino +++ /dev/null @@ -1,15 +0,0 @@ -// Send MIDI Note On -void noteOn(byte channel, byte pitch, byte velocity) { - MIDI.sendNoteOn(pitch, velocity, channel); - if (diagnostics == 3) { - Serial.print(pitch); - Serial.print(", "); - Serial.print(velocity); - Serial.print(", "); - Serial.println(channel); - } -} -// Send MIDI Note Off -void noteOff(byte channel, byte pitch, byte velocity) { - MIDI.sendNoteOff(pitch, velocity, channel); -} \ No newline at end of file |
