You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
291 B

const startButton = document.getElementById("start");
startButton.addEventListener("click", async () => {
try {
const device = await navigator.bluetooth.requestDevice({
acceptAllDevices: true,
});
console.log(device);
} catch (error) {
console.log(error);
}
});