cn-johndpope

Results 4 issues of cn-johndpope

@TimoKinnunen has done some fine work here - but we need an official sample app show casing bluetooth searching / connecting etc. https://github.com/TimoKinnunen/MauiXAMLBluetoothLE

export async function requestDevice(query) { var objquery = JSON.parse(query); console.log(query); var device = await navigator.bluetooth.requestDevice(objquery); await device.gatt.connect(); device.addEventListener('gattserverdisconnected', onDisconnected); PairedBluetoothDevices.push(device); console.log('> Device connected'); return { "Name": device.name, "Id": device.id };...

I can see related posts - but nothing concrete - the view shows "authorizing.... " for long time > 5 seconds.