S Scantech Well-Known Member Licensed User Longtime User Jan 18, 2012 #1 Is there a way to detect Bluetooth existence on a device. Emulators do not have bluetooth and can lead to errors if you are seeking paired devices.
Is there a way to detect Bluetooth existence on a device. Emulators do not have bluetooth and can lead to errors if you are seeking paired devices.
Erel B4X founder Staff member Licensed User Longtime User Jan 18, 2012 #2 You can do a test like that (after initializing the object): B4X: Dim Available As Boolean Try Serial1.Address Available = True Catch Available = False End Try ... Upvote 0
You can do a test like that (after initializing the object): B4X: Dim Available As Boolean Try Serial1.Address Available = True Catch Available = False End Try ...