Dear Readers,
In my current project, I get data at 100Hz, meaning 10ms period. I want to send this preferably over bluetooth to an app, which I will code in React Native.
Data: 2x float, 2x int
The question now is if bluetooth is fast enough to send data in real-time, or should I use another method?
There is a bluetooth BLE library for React Native which is quite good but i am unsure if BLE is the right choice for this, as i have heard that is quite slow in data exchange.
I do not want to use Wifi because of some reasons.
Thanks for your help