Skip to content

Commit 8a856e1

Browse files
author
Francois Best
committed
Merge remote-tracking branch 'origin/Franky47-patch-1' into dev
2 parents d57acdb + 3eb65db commit 8a856e1

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

library.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "Arduino-MIDI",
3+
"keywords": "midi",
4+
"description": "This library enables MIDI I/O communications on the Arduino serial ports",
5+
"author":
6+
{
7+
"name": "Francois Best",
8+
"email": "francois.best@fortyseveneffects.com",
9+
"url": "http://fortyseveneffects.com"
10+
},
11+
"repository":
12+
{
13+
"type": "git",
14+
"url": "https://github.com/FortySevenEffects/arduino_midi_library.git"
15+
},
16+
"include": "src",
17+
"examples": "res/Examples/*/*.ino"
18+
}

src/MIDI.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ template<class SerialPort, class Settings>
279279
void MidiInterface<SerialPort, Settings>::sendPitchBend(double inPitchValue,
280280
Channel inChannel)
281281
{
282-
const int value = inPitchValue * MIDI_PITCHBEND_MAX * Settings::Toto;
282+
const int value = inPitchValue * MIDI_PITCHBEND_MAX;
283283
sendPitchBend(value, inChannel);
284284
}
285285

0 commit comments

Comments
 (0)