Skip to content

Instantly share code, notes, and snippets.

@gfwilliams
Created October 30, 2018 15:14
Show Gist options
  • Save gfwilliams/155fb3e90a6cf2d001c300effaf5e508 to your computer and use it in GitHub Desktop.
Save gfwilliams/155fb3e90a6cf2d001c300effaf5e508 to your computer and use it in GitHub Desktop.
<html>
<body>
<a onclick="go()">Click me</a>
<script>
function go() {
var options = {
filters: [
{name: 'ENV'},
]
};
navigator.bluetooth.requestDevice(options).then(function(device) {
console.log(device);
console.log('Device: ' + JSON.stringify(device));
}).catch(function(error) {
console.log("Something went wrong. " + error);
});
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment