Search found 2 matches

by ripplingwater
Wed Oct 10, 2018 3:35 am
Forum: Showcase
Topic: ESP32 BLE scan problem!!!
Replies: 5
Views: 13612

Re: ESP32 BLE scan problem!!!

Inside here you may be able to read the device name ( short name, local name etc , that I am not sure ) .... and then you can know if it's the device you are looking for void onResult(BLEAdvertisedDevice advertisedDevice) { Serial.printf("Advertised Device: %s \n", advertisedDevice.toString().c_str(...
by ripplingwater
Wed Oct 10, 2018 3:31 am
Forum: General Discussion
Topic: Continuous BLE Scan + get RSSI
Replies: 1
Views: 11452

Continuous BLE Scan + get RSSI

hi, Couple of simple question here related to BLE Scan on ESP32 from a beginner. The below code comes as one of the examples in Arduino IDE after installing the ESP32 board. There are 2 things that I want to change here 1) Is it possible to get the scan to go forever (without looping or something)? ...