diff --git a/library.json b/library.json new file mode 100644 index 0000000..a3b6065 --- /dev/null +++ b/library.json @@ -0,0 +1,18 @@ +{ + "name": "Arduino-MIDI", + "keywords": "midi", + "description": "This library enables MIDI I/O communications on the Arduino serial ports", + "author": + { + "name": "Francois Best", + "email": "francois.best@fortyseveneffects.com", + "url": "http://fortyseveneffects.com" + }, + "repository": + { + "type": "git", + "url": "https://github.com/FortySevenEffects/arduino_midi_library.git" + }, + "include": "src", + "examples": "res/Examples/*/*.ino" + } diff --git a/src/MIDI.hpp b/src/MIDI.hpp index 7e79d3c..b24a575 100644 --- a/src/MIDI.hpp +++ b/src/MIDI.hpp @@ -279,7 +279,7 @@ template void MidiInterface::sendPitchBend(double inPitchValue, Channel inChannel) { - const int value = inPitchValue * MIDI_PITCHBEND_MAX * Settings::Toto; + const int value = inPitchValue * MIDI_PITCHBEND_MAX; sendPitchBend(value, inChannel); }