JSFiddle - React, Tailwind, and code Playground
HTML
<htmp>
<body>
<h1>
Hello World!
</h1>
</body>
</htmp>
JavaScript
log('Requesting Bluetooth Device...');
navigator.bluetooth.requestDevice({
filters: [{
services: [0xFED8]
// This is UriBeacon; Eddystone is 0xFEAA
}]
}).then(function (device) {
return device.connectGATT();
});