Bart De Lathouwer

Results 130 comments of Bart De Lathouwer

any comments back @samspencer5991 ?

No need to port this lib, you can use it OoB using the Pico's serial port (using the Arduino IDE)

This library was developed prior to Adafruit_TinyUSB and only does MIDI - the Adafruit lib does much more. Why do you want to mix them?

Hi, nice work! This issue might relate to the [underlying MIDI library](https://github.com/FortySevenEffects/arduino_midi_library). Have you searched the issues section for CC related issues? (This library is a thin wrapper around FortySevenEffects...

I'm going to recommend to create a similar issue (and also point to this one) in the underlying [library git](https://github.com/FortySevenEffects/arduino_midi_library). The community there is much better to respond to CC...

Bizar, MIDI thru has been switched pff https://github.com/lathoub/Arduino-BLE-MIDI/blob/929c2fc04962672ddba903a618601bea44ee1f3e/src/BLEMIDI_Transport.h#L55 Can you check in the [underlying lib](https://github.com/FortySevenEffects/arduino_midi_library) if MIDI Thru has been switched off (breakpoint or log message)

>I remember you added a way to dictate whether Thru was enabled or not per transport? Correct, `thruActivated` is set per library. Serial MIDI (this library) https://github.com/FortySevenEffects/arduino_midi_library/blob/2d64cc3c2ff85bbee654a7054e36c59694d8d8e4/src/serialMIDI.h#L54 In packet based...

I believe this relates to a missing `library.properties` file, that specifies a default include file (`includes=`). See [here](https://arduino.github.io/arduino-cli/0.19/library-specification/) It states: `If the includes property is missing, all the header files...

I run it with an ESP32 without a problem. ```cpp #include #include ... #define SCREEN_WIDTH 128 // OLED display width, in pixels #define SCREEN_HEIGHT 64 // OLED display height, in...

Nano33 branch changes taken up in the master branch. Regarding #include , this is added by the underlying library (Assuming the ARDUINO macro is defined): https://github.com/FortySevenEffects/arduino_midi_library/blob/2d64cc3c2ff85bbee654a7054e36c59694d8d8e4/src/midi_Defs.h#L33 Did you get the...