JSFiddle - React, Tailwind, and code Playground

by Masayoshi Kuroda

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();
});