Created
October 30, 2016 04:17
-
-
Save thangman22/616dd0d152c9414c437e6436f91aec0b 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<script> | |
function onButtonClick() { | |
let filters = []; | |
filters.push({services: ['battery_service']}); | |
navigator.bluetooth.requestDevice({filters: filters}) | |
.then(device => { | |
console.log(device) | |
}) | |
.catch(error => { | |
console.log('Argh! ' + error); | |
}); | |
} | |
</script> | |
</head> | |
<body> | |
<button onclick="onButtonClick()">Connect</button> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment