for example, how can Mini Program search nearby ibeacon?
// ibeacon uuid
wx.startBeaconDiscovery({
uuids: [],
success: (res) => {
wx.onBeaconUpdate((beacons) => {})
}
})
can I search for a nearby device through Bluetooth api and get the uuid of ibeacon from it? Or is there another way?