I've been basing my project on the discover services and characteristics sample project:
https://googlechrome.github.io/samples/web-bluetooth/discover-services-and-characteristics.html
I'm trying to log a list of all available services within a…
I integrated sample code into my Angular 6 project. But there some compile errors. One of these errors is:
Property 'bluetooth' does not exist on type 'Navigator'.
Why this error happens and how can I solve it?
When I look at https://caniuse.com/mdn-api_bluetooth it indicates that neither Safari not iOS Safari supports Web Bluetooth, and due to Apple policy all iOS browsers basically Safaris as well, so this means none of the browsers could come to rescue…
I have been working with web-bluetooth for the past several months on iOS and ChromeOS without any problems. But today, I tried to run some of my examples on Windows for the first time, and to my surprise, most of the things I had implemented didn't…
Is it possible to connect a bluetooth device whose ID I know without the pairing screen?
classic:
navigator.bluetooth.requestDevice ({filters: [{services: ['heart_rate']}]})
.then (device => {
this.device = device;
return…
The experimental Web Bluetooth API works quite well in the Dev version of Chrome for Android Marshmallow. I can simply enable the experimental flag at chrome://flags/#enable-web-bluetooth and I'm good to go.
Sadly the Web Bluetooth API doesn't work…
I was wondering if there are any possibilities to efficiently communicate and share data between devices using an offline progressive web app without being able to access the internet.
The first things that came into my mind are the Web Bluetooth…
Does web-bluetooth run into a 20 byte MTU on Windows Chrome?
I am seeing writes to a characteristic value of the same 25 bytes succeed in Chrome on mac OS and fail in Chrome on Windows.
As I whittle down the bytes, the error continues occurring…
i want to make two browsers in two different devices be able to chat via web bluetooth. Lets say i load a website on both devices and if in the case internet is lost i still want both the devices be able to chat?
I am currently developing an embedded system who count the number of cars and saved theirs speed and time. All these data are stored in a simple logs file (thanks to rsyslog). In parallel, I develop an web-API (in Typescript/Angular with Electron…
The BLE Peripheral Simulator app, combined with the Web Bluetooth Samples, is a tremendous resource for developers.
Once a device is paired, is there any way through Web Bluetooth to bypass the pairing screen and go straight to the app?
I've searched the Web Bluetooth docs and the chrome.bluetooth docs but it seems like they only mention Chrome Apps being able to access the API, it doesn't say anything about extensions.
Is it possible to search for beacon data (uuid, url, ...) with a progressive web application using just web technologies that is without using native mobile technologies (Android, ios, ...)?
Thanks in advance.