Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated adapter for Dell Precision 7510 which has an Intel Wireless B… #76

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions lib/usb.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down