Open horihiro opened 7 years ago
I executed following codes with noble-uwp.
noble-uwp
const noble = require('noble-uwp'); noble.on('scanStart', () => { console.log('scanStart'); }); noble.startScanning();
But I couldn't handle scanStart event. Can I get scanStart / scanStop events with noble-uwp?
scanStart
scanStop
On the other hand, I could get events with same codes with noble which has scanStart / scanStop events,
noble
I'm not seeing any scanStart events either. scanStop works fine.
I executed following codes with
noble-uwp
.But I couldn't handle
scanStart
event. Can I getscanStart
/scanStop
events withnoble-uwp
?On the other hand, I could get events with same codes with
noble
which hasscanStart
/scanStop
events,