Re: [web-bluetooth] Specify a Bluetooth Scanning API.

This makes more sense now ;)
Thank you @jyasskin!

So once you have a `BluetoothDevice` object, the way to know if you 
have to use `requestDevice` is to check `device.gatt`? But how do you 
make sure that only this device will be shown in the bluetooth 
chooser?

```js

navigator.bluetooth.requestLEScan({
  filters: [{manufacturerData: 0x004C}],
}).then(() => {
  navigator.bluetooth.addEventListener('advertisementreceived', event 
=> {
    if (!event.device.gatt) {
      // How do I connect to this device specifically?
    }
  })
})

-- 
GitHub Notification of comment by beaufortfrancois
Please view or discuss this issue at 
https://github.com/WebBluetoothCG/web-bluetooth/pull/239#issuecomment-219125983
 using your GitHub account

Received on Friday, 13 May 2016 18:38:56 UTC