Hello everyone, I'm currently worken on a project where I let two ESP32 communicate with each other via BLE and it is working pretty fine. There is only one problem: When the ESP32 running as BLE client disconnects form the ESP32 running as server (because it is too far away or whatever) the client ...
Alright I got the problem solved. The name of the server device "MyESP32" was too long. As i read on this topic https://github.com/nkolban/esp32-snippets/issues/269 the name needs to be 5 characters or less so I changed it to "MyESP" and it is working now. I thank you so much for helping me chegewara
Short answer, yes it is possible. Long answer, you are missing one important thing. BLE_client will connect to BLE_server device if and only when BLE_server will advertise serviceUUID and advertised serviceUUID is the same BLE_client is looking for: https://github.com/nkolban/ESP32_BLE_Arduino/blob...
Hello everybody, I have been wondering if it was possible to use BLE to make 2 ESP32 communicate with each other. I have already tried uploading the Arduino IDE BLE_server example to the first ESP32 and the BLE_client example to the second Arduino. Also I have watched Kolban's videos about this topi...