2014-11-24 178 views
0

下列API可以在Windows XP和Windows 7上運行嗎?我在Mac OS X中嘗試過,它工作正常。但它不適用於帶有IOGEAR藍牙4.0適配器(GBU521)的Windows XP。Chrome藍牙API可以在Windows XP和Windows 7上運行嗎?

chrome.bluetooth.getAdapterState(function(adapter) { 
    console.log("Adapter " + adapter.address + ": " + adapter.name); 
}); 

chrome.bluetooth.getDevices(function(devices) { 
    console.log("Inside getDevices"); 
    for (var i = 0; i < devices.length; i++) { 
    updateDeviceName(devices[i]); 
    } 
}); 

回答

1

您必須使用Windows 8.1才能使用BLE功能。