Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libraries/USB/src/USBMIDI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ void USBMIDI::channelPressure(uint8_t pressure, uint8_t channel) {
// Pitch Bend Change [-8192,0,8191]
void USBMIDI::pitchBend(int16_t value, uint8_t channel) {
uint16_t pitchBendValue = constrain(value, -8192, 8191) + 8192;
pitchBend(pitchBendValue);
pitchBend(pitchBendValue, channel);
}

// Pitch Bend Change [0,8192,16383]
Expand Down
Loading