diff options
Diffstat (limited to 'arduino/Laserharfe')
-rw-r--r-- | arduino/Laserharfe/Laserharfe.ino | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arduino/Laserharfe/Laserharfe.ino b/arduino/Laserharfe/Laserharfe.ino index 1d7adeb..b219951 100644 --- a/arduino/Laserharfe/Laserharfe.ino +++ b/arduino/Laserharfe/Laserharfe.ino | |||
@@ -262,9 +262,9 @@ void handle_midi(char *command) { | |||
262 | Serial.println("- MIDI SENT"); | 262 | Serial.println("- MIDI SENT"); |
263 | } | 263 | } |
264 | 264 | ||
265 | void midi_playnote(int channel, int note, int octave_offset ) { | 265 | void midi_playnote(int channel, int note, int octave_offset, int velocity ) { |
266 | midi_pitchbend(channel, 0); | 266 | midi_pitchbend(channel, 0); |
267 | midiEventPacket_t p = { 0x9, 0x90 | channel, note + 12 * octave_offset, 0x7f }; | 267 | midiEventPacket_t p = { 0x9, 0x90 | channel, note + 12 * octave_offset, velocity }; |
268 | MidiUSB.sendMIDI(p); | 268 | MidiUSB.sendMIDI(p); |
269 | } | 269 | } |
270 | 270 | ||