如何检查设备是否已连接到蓝牙?

时间:2019-05-12 22:53:19

标签: java bluetooth

如何测试蓝牙耳机是否已连接到手机?我知道Bluetooth API支持BluetoothHeadset配置文件,并且它输出2、1或0,但是我不知道如何使用它。谢谢! ^忽略此

编辑:是否可以测试Bluetooth.Headset是否为两个? 喜欢-

if (Bluetooth.Headset = true){
action
}else (blah blah)

能否让我知道我的手机是否已连接到蓝牙耳机?

再次编辑:因此,三种状态分别为连接,连接和断开。如何测试是否已连接?

1 个答案:

答案 0 :(得分:-2)

对于iOS(如果Google是正确的,对于Android),您可以在“设置”>“蓝牙”>“设备”中查看。如果设备已连接,您应该在那看到您的设备。

//to prevent repeated alerts
var h = 1
if (BluetoothHeadset == 2 && h == 1) {
    alert("You have been connected to your Bluetooth headset.");
    h = 0;
} else if (h == 0) {
    alert("You have been disconnected from your Bluetooth headset.");
    h = 1
}