Created
October 30, 2018 15:14
-
-
Save gfwilliams/155fb3e90a6cf2d001c300effaf5e508 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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