I have an RC car that I built using arduino, a bluetooth usb dongle, and a ps3 controller. The car has several functions (lights, sounds) along with driving around.
I want to replace bluetooth dongle and the ps3 controller with a BLE module (I have the HM-10) and I want to use web bluetooth. So the controller will be a virtual one served from a secure website.
My question is: Is a setup like this possible with the current version of web bluetooth?
And: How often can a Center (My computer/website) notify the Peripheral (the RC car) to start/stop/turn/play sound/etc... ? In general, what limitations will I (if any...I'm sure there are some or I wouldn't be posting this) run into with this setup vs the simple bluetooth dongle/ps3 controller.
I hate to be too general but being new tech, any other comments/insights/pitfalls are welcome!
Yes, this is possible. Some examples:
You could even keep the Dual Shock 3 as an optional input device by using the Gamepad API.
Regarding notification frequency, neither Chrome nor the Web Bluetooth API impose any artificial limitation on BLE activity at that level. However, that's not to say that Chrome's architecture won't add some small amount of overhead. Additionally, all of this is heavily hardware dependent, both on the central and the peripheral, so it's difficult to even ballpark expected performance.
Good luck! Sounds like a neat project!