Bart De Lathouwer

Results 130 comments of Bart De Lathouwer

@franky47 This has been out for a while (a reworked and optimized version of the current ActiveSensing), is this something to be considered for the next update?

Hi @highway11 I use this lib with an ESP32, so it can work :-) What I recommend: 1. `Serial` will not work (`serial` is used for programming the ESP32), I...

Totally confused. An ESP32 does not have a USB port (or are you talking about a USB in from of a ESP32 (eg DOIT ESP32 Devkit v1.0) that is used...

Got it, unconfused now :-) I never tried it that way. Do you have a serial sniffer on your computers serial port? What does that show?

typedef'ing the Transport layers and MIDI protocol would create name collisions when combining multiple Transports in 1 sketch - and - would also create multiple typedef's for the optional Settings...

The design decision to use templates, rather than inheritance is dictated by Arduino target: avoid dynamic memory allocation at run-time, try to keep the runtime as small & fast as...

a single `typedef` for all the cases (Hardware/Software - Settings, SerialSettings) is (AFAIK) not possible. What you need (?) is a virtual interface that exposes the MIDI commands ``` class...

this? (in `SerialMIDI.h`) Then use `midiInterface_t` Downside: when creating 2 MIDI instances, the typdef is recreated and creates an error ```cpp /*! \brief Create an instance of the library attached...