File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change @@ -279,7 +279,7 @@ template<class SerialPort, class Settings>
279279void 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
You can’t perform that action at this time.
0 commit comments