WebBLE
WebBLE copied to clipboard
iOS WebBluetooth Polyfill
looks like it's something that is not added by default in a webview, [here](https://stackoverflow.com/questions/59083340/how-to-download-files-in-wkwebview) is the documentation.
In WebBLE when sending, for example, writeValue(2000), the received value is 208 (which is 2000&0xff). This is not the case with Chrome from a desktop computer, nor from Chrome from...
I had to replace all of my oncharacteristicvaluechanged handlers as the title describes, otherwise they never fire. (FYI--Exact same thing in Carta Browser)
It seems that gatt.connect() call is not possible after gatt.disconnect(). I'm getting following error: No known device for device transaction Transaction(id: 33, key: device:connectGATT), where the 33 is some internal...
As per: https://webbluetoothcg.github.io/web-bluetooth/#permission-api-integration Basically as I understand it this would allow web pages not to need to re-ask for permission to access devices they've requested permission to access before, making...
To safe battery in my gadget, I wanted to change to advertising instead of a connection that has to be kept alive. It seems that WebBLE did not implement advertising...
I have a BLE app that generates downloadable data in the browser. The download links I generate do not work (they do nothing) in WebBLE like they do in Safari....
With Bangle.js you can now enable ANCS and AMS, which allows it to grab notifications and music playback info direct from iOS without an app installed (iOS stays connected to...
With iOS 15 adding support for Safari extensions, it would be really nice if it was possible to put the functionality of an app into an extension that just gave...
As per [apple's docs](https://developer.apple.com/library/archive/documentation/NetworkingInternetWeb/Conceptual/CoreBluetooth_concepts/CoreBluetoothBackgroundProcessingForIOSApps/PerformingTasksWhileYourAppIsInTheBackground.html#//apple_ref/doc/uid/TP40013257-CH7-SW1) iOS does in principle allow bluetooth low energy apps to run in the background to handle bluetooth events, and it would be nice if WebBLE could...