Search found 4 matches

by hoschi
Fri Mar 18, 2022 10:56 am
Forum: ESP32 Arduino
Topic: ESP32 BLE Midi: How to send data from client to server
Replies: 1
Views: 6936

Re: ESP32 BLE Midi: How to send data from client to server

Found it - as usual: my bad. I forgot to add proper encryption level in my client sketch. After adding one line to my setup() routine the communication works as expected - here's the complete client's setup-function. void setup() { Serial.begin(115200); Serial1.begin(31250, SERIAL_8N1, 14, 13); // f...
by hoschi
Fri Mar 18, 2022 10:04 am
Forum: ESP32 Arduino
Topic: BLE seems to be manipulating serial data buffer
Replies: 1
Views: 3258

Re: BLE seems to be manipulating serial data buffer

After more testing, I figured out that this was a hardware issue. I was using a DC/DC step-down converter. Those devices use coils and it is widely known that those coils may inference with any wireless technology... I didn't know that and learned it the hard way. After switching to old-fashioned LM...
by hoschi
Thu Mar 17, 2022 9:14 pm
Forum: ESP32 Arduino
Topic: ESP32 BLE Midi: How to send data from client to server
Replies: 1
Views: 6936

ESP32 BLE Midi: How to send data from client to server

Hi all A while ago I wrote a sketch providing Midi over BLE. It allows me to connect apps on my iPhone to get paired with my ESP32. I can send Midi commands back and forth. It works with all apps I tried so far. I assume it is more or less based on common example we all can find in the internet. I d...
by hoschi
Thu Jan 27, 2022 3:07 pm
Forum: ESP32 Arduino
Topic: BLE seems to be manipulating serial data buffer
Replies: 1
Views: 3258

BLE seems to be manipulating serial data buffer

Looking here for good advises how to further nail down a strange issue with BLE and the ESP32. My application is a typical midi use-case. Using a D1 Wemos board with a self-designed midi interface, I use Pin 21 for midi-transmit and pin 16 for midi-receive. On top, I have another Midi connection usi...