jasongin / noble-uwp

Noble (Node.js Bluetooth LE) with Windows 10 UWP bindings
MIT License
83 stars 45 forks source link

Does noble-uwp emit 'scanStart' / 'scanStop' event? #41

Open horihiro opened 6 years ago

horihiro commented 6 years ago

I executed following codes with 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?

On the other hand, I could get events with same codes with noble which has scanStart / scanStop events,

pulquero commented 5 years ago

I'm not seeing any scanStart events either. scanStop works fine.