Recorder output in Bangle2 / no Alt/Speed... graph #7790
-
Hello folks, I just tryed to play with the recorder at Bangle2 and recordet speed, hrm and alt. |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments 43 replies
-
Thanks! I think I spotted an issue when it's trying to use the last row (as is the case for altitude). I've just put a fix in in the development app loader so if you go to https://espruino.github.io/BangleApps/ and install recorder 0.46 it should be fixed I hope. I'm not sure about why heartrate didn't work - it seems like it must have got a heart rate value out of range. If you still have issues, please can you go into the Web IDE, connect, then go to storage (hamburger icon in the middle), scroll down and download the track file you have, and then upload that here? The one you posted has been changed slightly by the App Loader so I can't just load it back onto the Bangle for testing. |
Beta Was this translation helpful? Give feedback.
-
@eisengpferd I think it's the best open source watch available for people who like to tinker while still managing to provide a stable platform for normal use. Just like everything else, there is always room for improvement, but it is already quite mature and polished and will only get better with more contributions. |
Beta Was this translation helpful? Give feedback.
-
@gfwilliams is this what you had in mind? It uses Leaflet for the map and Chart.js for the graphs. Leaflet is BSD 2-Clause and Chart.js is MIT licensed. Are there any restrictions on being able to use them in a Bangle.js interface besides referencing Leaflet in the docs somewhere? |
Beta Was this translation helpful? Give feedback.
-
Hey stweedo, I found another one: The download of a csv file ist only sometimes possible. Seems to be that after reloading the page I can download from the first recording and after that no other download is possible. Can you confirm that? |
Beta Was this translation helpful? Give feedback.
-
good work. Downloads ok and graphs without gps are ok :-) ok, one more on the wishlist: I am testing the HRM system at them moment. So I installed "Bluetooth Heart Rate Monitor". This app adds the "int Heartrate" and the "BT Heartrate" (from a Polar H10) I am not shure if there is another app (or even future app) which adds a new data field. Perhaps simply every data field from the recorder should be able to get a graph. Great fun here :-) Thanks /Hendrik/ |
Beta Was this translation helpful? Give feedback.
-
@stweedo the output is looking good for me. So we can compare the BT Heartrate with the internal one |
Beta Was this translation helpful? Give feedback.
-
@stweedo could you clarify that "elevation profile" ist the value from the gps? The gps-altitude is jumping very much... |
Beta Was this translation helpful? Give feedback.
I just added Steps+Battery graphs as it was pretty easy, but I think that covers most of the built-in stuff - at some point we add so much it actually gets in the way having so many options...
There's definitely scope for doing more though - it's not that hard to add other graphs (like this)
Or as you say often it makes more sense to have the data on the PC. Potentially there's a way to improve the current App Loader interface page to display some really nice graphs and allow downloading the graph itself (current code is at https://github.com/espruino/BangleApps/blob/master/apps/recorder/interface.html) - it feels like there must be some web-based library for graphing GPS-based data in a …