Brad Martin
Brad Martin
Hey @placic - I had the same issue with the Arduino Nano Every. My solution was to add this before calling `connection.Open();` ```cs SerialPort p = new(connection.PortName, connection.BaudRate) { DtrEnable...
Hi @larsterje, one method is to add an event handler for `Session.MessageReceived` or `Session.AnalogStateReceived`. That works, but it is nice to implement the `IObserver` interface along with its 3 methods....
maybe `ls` for easiest to implement option, `ls -u` filters for user, `ls -b` filters for built-ins
Thank you for your work! I made [this repository](https://github.com/bradmartin333/simplest_ble) during my transition from the python lib to the C++ source. Don't have all methods working, yet.
Experiencing the same