Sending sensor values from the Bangle.js 2 to my Smartphone #7883
-
|
Hello, Im new to this forum and this question might be a bit "nooby". Basically i consider using a Bangle.js 2 to track vital datas like HR. I want the data to be sent to my smartphone where i can display it in a App that i am going to develop. Before i order things, i would like to ask if my plan is realistic. Is it possible to send vital data like HR to my smartphone via BLE? (I couldn't find a example in here) Thank you so much i appretiate a lot if someone could help me out |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
|
Hi! Yes, sending data from Bangle.js to the PC is realistic and very easy to do. There's an example of sending some data to a Web Bluetooth webpage at https://www.espruino.com/Bangle.js+Data+Streaming that you can try - the code on Bangle.js will be the same, you just have to write your app to read the data from Bluetooth LE.
Bangle.js automatically stores health data every 10 minutes (max/min heartrate, altitude, temperature, battery) if you have the Health app installed. You can also save much more detailed data up to every second using the ... but we don't for example store raw accelerometer or heartrate sensor data with built-in apps. But nothing would stop you doing that if you wanted.
But if you record your own data, it really depends on how efficiently you store it and how often |
Beta Was this translation helpful? Give feedback.
Hi! Yes, sending data from Bangle.js to the PC is realistic and very easy to do. There's an example of sending some data to a Web Bluetooth webpage at https://www.espruino.com/Bangle.js+Data+Streaming that you can try - the code on Bangle.js will be the same, you just have to write your app to read the data from Bluetooth LE.
Bangle.js automatically stores health data every 10 minutes (max/min heartrate, altitude, temperature, battery) if you have the Health app installed.
You can also save much more detailed data up to every second using the
Recorderapp and you can then downloa…