I'm trying to connect to an ESP32 GATT service.
When I use BLE.Scan(Null) it scans for all services and later in the "DeviceFound" event I filter by the device Name.
I'm trying to restrict the scan with the UUID, but it never founds the device:
I'm sure of the UUID as if I scan with null option, it read´s it, and the UUID is defined clearly here:
Not sure what is the problem around
Thanks in advance
When I use BLE.Scan(Null) it scans for all services and later in the "DeviceFound" event I filter by the device Name.
I'm trying to restrict the scan with the UUID, but it never founds the device:
B4X:
Dim SSID As List
SSID.Initialize
SSID.Add("5f6d4f53-5f52-5043-5f53-56435f49445f")
BLE.Scan2(SSID, True)
I'm sure of the UUID as if I scan with null option, it read´s it, and the UUID is defined clearly here:
GitHub - mongoose-os-libs/rpc-gatts: RPC over GATT, Server
RPC over GATT, Server. Contribute to mongoose-os-libs/rpc-gatts development by creating an account on GitHub.
github.com
Not sure what is the problem around
Thanks in advance