iOS Question BLE filter peripherals with Id instead of Name?

megaB4x

Member
Licensed User
Longtime User
Hello,

In Manager_DeviceFound event I can't filter down BLE device with Id:

If Name = "TestName" Then
manager.StopScan
manager.connect(Id)
End If

Above code works fine but conditional statement with Id doesn't work

If Id = "TestID" Then
manager.StopScan
manager.connect(Id)
End If


Any ideas?

Thanks
 
Top