Help for writing an app (running zones using Karvonnen method) #6356
Replies: 1 comment
-
Posted at 2023-01-20 by Fteacher The whole code doesn't fit in the post because of the pics. I'm going to attach the whole code to this post (I modified to .odt, so that there's no security issue with posting it). Still, the end of the code (after the pictures) is here:
Attachments: Posted at 2023-01-20 by user140377 ok, I think we should concentrate on the swipe switch layout thing first to get your code on github as soon as possible. It is better readable there. These are the first steps I recommend:
Once this is done we can add http://www.espruino.com/Reference#l_Bangle_swipe to listen to swipes to switch layout. Posted at 2023-01-20 by @gfwilliams That looks great! One thing I'd say is maybe rather than using images, you could just draw the individual zones as polygons. There's no function built in but it's easy enough to do. For instance:
It'd likely be faster, would save a bunch of memory, and is a bit more flexible too as you can choose exactly how big and what color each slice is. Attachments: Posted at 2023-01-21 by @halemmerich This could also use Posted at 2023-01-22 by Fteacher Thanks a bunch guys ! Waow, that's incredible what you can do with code. Basically, I can decypher 20% of Gordon's code, the rest is like 3d hieroglyphs. Posted at 2023-01-22 by @halemmerich You can just use the library to draw an arc like this:
Gordons code does very similar things by constructing a polygon that approximates the arc. Attachments: Posted at 2023-01-23 by @gfwilliams I'd forgotten about Posted at 2023-02-13 by Fteacher Hello guys, Posted at 2023-02-14 by Fteacher Also, I tried to send Halemmerich's code in the watch and in the emulator with the same result: module graphics_utils not found. I don't know what I'm doing wrong there. Posted at 2023-02-14 by @thyttan Check this comment out :) Or more specifically this readme. Posted at 2023-02-16 by Fteacher Thank you @thyttan. Now that I've followed these instructions, I can make it work. I'm restarting the creative (but so tedious for beginners) process of coding. Posted at 2023-02-16 by Fteacher Ok, I've done something cleaner thanks to your comments :). Posted at 2023-02-16 by @thyttan
With regards to separate files vs. merging in your code in run.app.js both approaches are doable. EDIT: But after considering your specification in the OP I think you should try to merge into one file. I think it may be easiest to define a function handling swipe events in the run app, I usually call them swipeHandler, where you call load('karvonnen.js'). Then doing Bangle.on('swipe', swipeHandler) to make the Bangle listen for swipes and execute the function. Check out the Espruino Hardware Reference for load(), event swipe, and maybe Bangle.setUI(). If you want to swipe between the regular run app and korvonnen frequently it's maybe better to implement it as one (or several) functions to call inside run.app.js. If you want the run app to work simultaneously as well this will probably be the way to go. EDIT: I believe this is what you want. Posted at 2023-02-16 by @thyttan Why do you want to implement it inside the run app? Wouldn't it be easier to make it a separate app? I think the functionality could stand on it's own when it's done. That way you also get to practice the basics of creating the required metadata, settings.js and icons etc, utilizing the tutorials along the way :) Posted at 2023-02-17 by Fteacher I'm going to describe what I need. I usually run 50 to 80 minutes. I'm almost satisfied with the run app's live data (HR, duration, distance, avg speed) and being able to extract a gpx after the run is critical to keep track of my runs. Basically, the run app covers the performance and the Karvonnen would allow me to check the intensity of my effort. So I need the Karvonnen app for most of my run and the run app just a few times during the run to check how I'm doing in terms of performance. Also, as soon as I'm running faster (increasing the intensity), I struggle to read the small numbers of the run app, I needed something bigger. For my personnal use, I will add a buzz when changing HR zone. I definitively want to swipe between run and Karvonnen and have the benefits of both. Posted at 2023-02-17 by @thyttan
Ok! I started merging the code here just to show how it can be done, it's not perfect in any way :) There are some intervals in the run app code that must be stopped (or modified, I don't really understand the code yet :P) and started again when switching UI, and there are significant ram leaks right now. What works is swiping back and forth to display the different UI's. EDIT: Can be installed via my app loader. Posted at 2023-02-17 by @allObjects @FTeacher, I like your comment
a lot, especially this part: ...so tedious for beginners I can tell you that without Espruino / @gfwilliams's platform, you would not even find a word in the whole universe to describe it... just saying. Enjoy the creative writing process... Espruino likes to read your stories and follow them to the tee... so watch what you are asking it for! Posted at 2023-02-18 by @halemmerich Every useful line of code has dozens to hundreds deleted ones standing behind it ;) Posted at 2023-02-18 by @thyttan I have tweaked the merged code and it seems to work pretty well now! I am sure there are things that can be done better and bugs will be found. Some cleanup should be done as well. But I don't get large ram leaks at least, and the run app functionality runs in the background when the karvonnen UI is displayed. Use the links in my previous reply. EDIT: I did a pull request into your master branch in case you want to continue with the karvonnen code accessible from app.js :) Posted at 2023-02-19 by user140377 Good job, just one question: Wouldn't it be better to jeep the code in a separate file for a.) clarity and b.) Easier extensibility in case of an alternative "zone-method"? oh another question, was this tested on Bangle 1 & 2? Posted at 2023-02-19 by @thyttan
I agree with both your points, I just didn't know how to achieve both having them run concurrently and have them in separate files. Maybe have them in different files on the app loader but require karvonnen into run.app.js when loading it to the clock? The Karvonnen code is pretty much intact so something like that could maybe work?
Unfortunately no, only on my Bangle 2. I just checked ram usage, and it seems to be higher than before by a value of 100 across the different screens, with peak 3444 (27% of full RAM on Bangle 2) when the app asks to overwrite or start a new log. EDIT: Could it be problematic somehow that I changed all 'var' declarations to 'let' declarations? I did it as part of tracking down RAM leaks, but don't know if it did any difference or not. Posted at 2023-02-19 by user140377 Separation: I was aiming for something simple, like putting everything in karvonnen.js, adding this to metadata
and loading it in app.js:
see attached run.diff.txt Bangle.js 1: I have never used the run app, but if wanted I might be able to test later together with https://banglejs.com/apps/?id=sensortools as gps provider. Attachments: Posted at 2023-02-19 by @thyttan Thanks! I have done changes like you suggested and it works. I used naming like for the modules (run_karvonnen.js and run_karvonnen), should I use the name you suggested instead as this is maybe not a module in the same sense as the ones in the module folder? Use the same links as before. I rebased the code on my app loader on the PR to Posted at 2023-02-19 by user140377 I'm not sure here (maybe this is for gordon?), for me at is ok as long as the name starts with "run" so in the storage the new file is sorted near all the other run files. Posted at 2023-02-19 by Humpelstilzchen I can't even run the version 0.14 on my Bangle.js 1. I get low memory error. I say we just remove it from the supported list for this app. Posted at 2023-02-19 by @halemmerich Maybe just give the run app a mechanism to eval additional pages which can be selected by swiping but are installed as separate apps. Just to keep run as slim as possible by default. An example for this would be the Recorder app. That searches for all files named
Posted at 2023-02-19 by @thyttan
Sound like a good idea, it's beyond my current abilities though :P
Fixed this.
I've now seemingly got the ui to update as one would want. I tried to code it so it would only update the different elements when there is a relevant change, i.e. at least kind of lazily. Usual caveats that there is sure to still be bugs and the code is maybe not the easiest to follow.. Use the same links as before. Posted at 2023-02-20 by Fteacher Hi all, and thanks for your participation in this ! Posted at 2023-02-20 by @thyttan Did some tweaks to behavior on button presses, I think it may now be ready for testing on actual runs, as before install it via my app loader. Posted at 2023-02-20 by @halemmerich I have tested a bit:
Posted at 2023-02-20 by @thyttan Thanks, shouldn't the HRM key added to line 23 below have taken care of missing hrm settings?
(https://github.com/thyttan/BangleApps/blob/karvonnen/apps/run/app.js) The other stuff I should be able to sort out tomorrow. Posted at 2023-02-20 by @halemmerich Only if you give Posted at 2023-02-21 by @thyttan Thanks for spotting that 😊😅 Posted at 2023-02-21 by @thyttan
Posted at 2023-02-22 by @thyttan
Now I'm pretty confident with most things and I could do a PR to the main BangleApps repo. Ok with you, @FTeacher? :) I might look into using Posted at 2023-02-22 by Fteacher Yeah sure, go ahead :). Posted at 2023-02-22 by @halemmerich I can have a look at splitting the additional page out :) Since the code is already in it's own file it probably is relatively easy. I suspect the combined code is to heavy for Bangle 1, so some changes have to be made anyway to keep Run feasible for Bangle 1. It seems to be very tight on memory as @Humpelstilzchen can not run it now. This of course depends on other installed widgets/boot code using memory, so maybe it is still working now for others. Posted at 2023-02-22 by user140377 @halemmerich Please note I wasn't even able to run the unchanged run app on the Bangle.JS1. So I would not invest to much work on this, just remove Bangle.js1 from the supported list. Posted at 2023-02-22 by @halemmerich Just using Run on my Bangle 2 uses around 2000 blocks of the available 12000. Since Bangle 2 has 4 times the memory of the Bangle 1 I guessed that Run should still fit, if there is not to much other stuff running. Posted at 2023-02-22 by @thyttan
Thanks, please do :) I had a stab at it and it works, updated on my karvonnen branch. But adding logic for
That would be ideal if possible then. Posted at 2023-02-22 by @thyttan I just opened a draft PR, so reviewing the code is a little easier now. Posted at 2023-02-22 by @gfwilliams edit: Sorry, I didn't see the whole second page of comments, so this is less useful now! I'd say The thing I'm thinking of is there's a file for working out sunset, and then it started being used in a few places, and we had multiple apps providing If you though it might be used in other apps you could always add it to the Posted at 2023-02-22 by @gfwilliams I just saw the PR come in: espruino/BangleApps#2591 I've got to say, I'm a little anxious about adding this to the default The whole idea of me spending a bunch of time creating the While the Karvonnen stuff looks great, it more than doubles the code size of the Maybe we should instead just rename it as a brand new app Posted at 2023-02-22 by @thyttan
Totally fine by me! Or would @halemmerich suggestion maybe be a good idea:
? Posted at 2023-02-22 by @gfwilliams
I missed this! It seems like a good idea, but it feels a bit like we're almost re-implementing 'fast load' all over again... I'd rather not have a whole new app type that's a loadable fitness screen if it ends up only used by one app ( Maybe It's a hard one... I feel like maybe a separate app that does it all ( Posted at 2023-02-22 by @thyttan
Ooh, that could be cool indeed 😯
Sounds sensible enough to me 🙂 I'll wait for @halemmerich to chime in before redoing the PR as a new app. Posted at 2023-02-22 by @halemmerich Then how about leaving it as is, renaming to Posted at 2023-02-22 by @gfwilliams
Yes, sounds great to me! I'll see when I can get some time to tweak exstats Posted at 2023-02-22 by @thyttan Ok! I'll do some changes and then mark the PR as ready for review. Posted at 2023-02-22 by HughB I am looking forward to trying this out. Posted at 2023-02-23 by @gfwilliams Ok - it's merged in the dev app loader now. I also made exstats save the state between runs of the app, so you can start a run, exit the app with a long press and then re-enter it and resume. Posted at 2023-02-23 by @halemmerich Had a run using the app and it works quite well. I have some minor nitpicks and a few ideas:
Posted at 2023-02-23 by Fteacher I like Halemmerich's suggestions, especially the vibration on changing zones.
Posted at 2023-02-24 by @thyttan
EDIT:
Fix for settings added to the PR. Posted at 2023-02-25 by @thyttan
Really cool, thanks! Posted at 2023-02-25 by @thyttan
Fixed now, update on my app loader. Posted at 2023-02-25 by user140377 I have finally read the wikipedia about this karvonen thing and now I'm an expert in it ;) Well I have a question: It loos like the Karvonnen method is not limited to running. Wouldn't it make sense to move the karvonen file into a separate library-app, so it can also be used outside of "run", e.g. in "Cycling speed sensor" or even in a standalone app? Posted at 2023-02-26 by Fteacher hey @user140377 , yes Karvonnen works for all sports and maybe some cycling apps may get benefit from using this. Posted at 2023-02-27 by Fteacher Waow, it works great. It's reactive, looks nice and works as expected ! Thanks to all of you, you made my day and year, because I'll be using this app two to four times a week. I hope others will also get benefits out of it. I looked at the code, you did a great job at making this work efficiently. I can't decypher it all, but most of it makes sense, or at least I can guess what it means. It would have required a year of fiddling before I approach something that barely works. Posted at 2023-06-05 by @thyttan I just realized we don't have any info regarding the karvonen screen in the README.md file of runplus. Could you maybe put something in there @FTeacher? Posted at 2023-07-13 by @thyttan There are some hr zone stuff implemented in Gadgetbridge for adding to "Activity Tracks". So if we logged the current karvonen zone in the recorder log, maybe we could integrate that into the info displayed in Gadgetbridge. Here is the code in Gadgetbridge Here I'm working on adding Activity Track support for Bangle.js in Gadgetbridge EDIT: As per espruino/BangleApps#3068 (comment), it's probably better to have gadgetbridge calculate hr zones from the heart rate data when parsing. The info is there so it's unnecessary to add another field with calculations. Posted at 2023-11-02 by @thyttan I realized that instead of using |
Beta Was this translation helpful? Give feedback.
-
Posted at 2023-01-20 by Fteacher
Yop, I just had a few javascript classes and decided to write the app I'm waiting for :) ! Unfortunately, I have lots to learn.
I would like to implement my code as an extra feature of the run.app. It would be called run+
The missing features for which I need help are:
Here's the thing:
Attachments:
Beta Was this translation helpful? Give feedback.
All reactions