cmusphinx/pocketsphinx

esp32_BLE

srigandeswaran opened this issue · 0 comments

Hi all,
I need an help in esp32_ble

1Firstly Iam using the BLE_SCAN function ,I founded all the visible devices.
2.Now I need to pull all these list of visible device into one buffer

how can i move the entire list into buffer?

class MyAdvertisedDeviceCallbacks: public BLEAdvertisedDeviceCallbacks
{
void onResult(BLEAdvertisedDevice advertisedDevice)
{
Serial.printf("Advertised Device: %s \n", advertisedDevice.toString().c_str());
}
};

advertisedDevice.toString().c_str() -These prints the list of ble devices available,I need to copy the entire list in to buffer,how to do it?