Search found 3 matches
- Wed Dec 30, 2020 9:08 am
- Forum: ESP32 Arduino
- Topic: ESP32 Bluetooth LE (BLE) reconnect client when server appears
- Replies: 3
- Views: 8928
Re: ESP32 Bluetooth LE (BLE) reconnect client when server appears
Your client app is performing scan for only 5 sec, then it never try to scan again. You can use pBLEScan->start(0) (forever), and add BLEClentCallbacks and with the same line (pBLEScan->start(0)) in onDisconnect(). Hi again... I thought that i did solve the problems, everything is working, except w...
- Tue Dec 29, 2020 12:33 pm
- Forum: ESP32 Arduino
- Topic: ESP32 Bluetooth LE (BLE) reconnect client when server appears
- Replies: 3
- Views: 8928
Re: ESP32 Bluetooth LE (BLE) reconnect client when server appears
Hey hey hey :D Very good, thing is working now... I will get back and paste the final code, when i have it cleaned up some. Thanks man! Showing the Client reconnecting after Server rebooted or lost connection :: 99991 99990 99983 99980 99973 99974 onDisconnect BLE Advertised Device found: Name: SPR,...
- Tue Dec 29, 2020 11:23 am
- Forum: ESP32 Arduino
- Topic: ESP32 Bluetooth LE (BLE) reconnect client when server appears
- Replies: 3
- Views: 8928
ESP32 Bluetooth LE (BLE) reconnect client when server appears
Hi here... This is my first post on this board, so i'am a newbee :) Story :: I have created an ESP32 remote-controller which used to send BLE data to an RaspberryPi with enabled BLE. -Working okay within 1-2 meters range. The Remote-controller is the server part in the chain. Problem 1. :: The Raspb...