hbldh / bleak

A cross platform Bluetooth Low Energy Client for Python using asyncio
MIT License
1.83k stars 302 forks source link

Notification callback is not called continuously #842

Open jaekwonKim opened 2 years ago

jaekwonKim commented 2 years ago

I try to get notification continuously. This means stop_notify not called. Only called start_notify. Device send every 100ms to buffered data(It mostly 150 bytes). Most of times callback is not called. In this case, try to start notification again, callback is called some of times and stop again.

Device MCU is nRF52833 so I can check notification by nRF52840 USB Dongle. Device send all notification.

How can I get notification continuously??

dlech commented 2 years ago

I would try logging Bluetooth packets to see if the notifications are getting to the Bluetooth stack on Windows. See the troubleshooting section of the docs for instructions on how to do this.

Xin-Lee commented 3 months ago

Hi, have you solved the problem? I also find this problem and I don't know what to do.