mirror of
https://github.com/servo/servo.git
synced 2025-07-09 16:33:40 +01:00
28 lines
872 B
HTML
28 lines
872 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<title>Request All Devices</title>
|
|
<body>
|
|
<button type="button" onclick="onButtonClick()">Request All Devices</button>
|
|
<pre id="log"></pre>
|
|
<script src="bluetooth_functions.js"></script>
|
|
<script>
|
|
function onButtonClick() {
|
|
clear();
|
|
var options = {optionalServices: ['generic_access'], acceptAllDevices:true};
|
|
try {
|
|
log('Requesting Bluetooth Device...');
|
|
var bluetooth = window.navigator.bluetooth;
|
|
var device = bluetooth.requestDevice(options);
|
|
|
|
log('Connecting to GATT Server on device...');
|
|
var server = device.gatt.connect();
|
|
|
|
log('Getting Generic Access Service...');
|
|
var service = server.getPrimaryService('generic_access');
|
|
} catch(err) {
|
|
log(err);
|
|
}
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|