diff --git a/README.md b/README.md index 140fbdb..46757fd 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ __WARNING:__ This will make the adapter unavailable in Windows Bluetooth setting | Intel Wireless Bluetooth 6235 | 0x8087 | 0x07da | | Intel Wireless Bluetooth 7260 | 0x8087 | 0x07dc | | Intel Wireless Bluetooth 7265 | 0x8087 | 0x0a2a | +| Intel Wireless Bluetooth | 0x8087 | 0x0a2b | | Belkin BCM20702A0 | 0x050D | 0x065A | #### Compatible Bluetooth 4.1 USB Adapter's diff --git a/lib/usb.js b/lib/usb.js index 8859c8e..92aa46a 100644 --- a/lib/usb.js +++ b/lib/usb.js @@ -72,6 +72,7 @@ BluetoothHciSocket.prototype.bindUser = function(devId) { usb.findByIds(0x8087, 0x07da) || // Intel 6235 usb.findByIds(0x8087, 0x07dc) || // Intel 7260 usb.findByIds(0x8087, 0x0a2a) || // Intel 7265 + usb.findByIds(0x8087, 0x0a2b) || // Intel usb.findByIds(0x0489, 0xe07a) || // Broadcom BCM20702A1 usb.findByIds(0x0a5c, 0x6412) || // Broadcom BCM2045A0 usb.findByIds(0x050D, 0x065A); // Belkin BCM20702A0