cyberdevnet

Results 7 comments of cyberdevnet

Hi @dominik-czupryna-withintent , I'm using Notification, here the relevant code: ``` void sendChunksWithFlags(const String& data, BLECharacteristic* characteristic, int maxChunkSize) { int numChunks = (data.length() + maxChunkSize - 1) / maxChunkSize;...

Hi, I didn't try yet, I'm a bit stuck with other projects but I'll update you asap. Thanks for testing anyway

@dominik-czupryna-withintent I tried again but unfortunately same result, I tried to increase the minimum interval of the server up to 150ms but still the same. I tried nRF too and...

@RosiersRobin did you manage to update one esp32 from another? It's exactly what I'm trying to do...not too much info over the internet

I have a similar problem where I can only send and not receive, but if invert the wiring then I can receive but not send. Using Serial2 (RXD2 16, TXD2...

HI, thanks for pointing out the PINs, this was probably one of many error. I wasn't able to let the library work also with the custom transport (same infinite loop...

I was able to fix in this way: ``` float tempselectedMidiChannel; if (selectedMidiChannel == "ALL") // value taken from flash { tempselectedMidiChannel = 0; } else { tempselectedMidiChannel = selectedMidiChannel.toFloat();...