- From: François Beaufort via GitHub <sysbot+gh@w3.org>
- Date: Tue, 25 Aug 2015 06:48:31 +0000
- To: public-web-bluetooth-log@w3.org
beaufortfrancois has just created a new issue for
https://github.com/WebBluetoothCG/web-bluetooth:
== Scan by Organizationally Unique Identifier (OUI) ==
It would be nice to be able to scan with filters on OUI.
Here's how it would look like for the Rolling Spider Drone:
```js
return navigator.bluetooth.requestDevice({
filters: [{ ouiData: [0x880F10] }] // Huami Information Technology
Co.,Ltd.
}).then(device => { ... })
```
According to https://standards.ieee.org/develop/regauth/tut/eui.pdf
and http://standards-oui.ieee.org/oui.txt
See https://github.com/WebBluetoothCG/web-bluetooth/issues/154
Received on Tuesday, 25 August 2015 06:48:34 UTC