The circle app is awesome (make it more readable ?) #4190
Replies: 1 comment
-
Posted at 2022-01-06 by myxor Thank you @FTeacher. I am glad that someone likes my watchface :) I am already working on a new version of the watchface with the following changes:
You can test it here: I will have a look at increasing the font size of the text inside the circles to make it more readable! :) If you have any more feedback feel free to write it here - i will follow this thread. Posted at 2022-01-06 by Fteacher I'll check it tomorrow ! Thanks a bunch. I'll give you my feedbacks, for sure. Posted at 2022-01-06 by myxor I just updated my dev version of the clock with your suggestions and increased the circle sizes as as the font inside. You can have a look at my attached screenshots. Any feedback is appreciated. Attachments: Posted at 2022-01-06 by Fteacher I've uploaded it, nice job ! Actually, as I had modified your app and loaded into the watch, I just deleted all the apps (factory reset) and reinstalled circle app with a fresh start. And the heart rate is not showing up. I have it in the widgets, but the hr circle is empty, just the - symbol in the circle. I remember I used to have this issue previously, but I can't remember how I solved it... Any clue ? Posted at 2022-01-07 by myxor That's strange. Can you try to reload the watch (press the button for 2-3 seconds) and see if it changes? Posted at 2022-01-07 by Poolitzer You need to enable heart rate tracking in the settings, maybe thats it? Posted at 2022-01-07 by myxor By default the following circles are active / shown: So heart rate should be there (red with the heart symbol at the bottom of the circle) and when the watch is unlocked the heart rate sensor should be activated and after some seconds the values should be shown. Posted at 2022-01-07 by Fteacher The only sign shown in the middle circle is - . Attachments: Posted at 2022-01-07 by Fteacher The v0.04 has much better readability. Also, it allowed to tweak the minimum HR. The v0.03 often shows me less than 50 whereas I know for sure that my lowest is 57. Maybe it could be adjusted 5 by 5 (50-55-60-65) Posted at 2022-01-07 by Poolitzer welp now I have to try that Posted at 2022-01-07 by Poolitzer I downloaded V0.14 from myxor github.io without doing factory reset on latest release firmware v2.11, the heart rate is displayed just fine for me. Posted at 2022-01-07 by myxor Thanks for trying out and giving feedback @Poolitzer. @FTeacher i made some changes a few minutes ago which one may help to solve your problem. I would suggest you to redownload v0.04 from my github page again and see if that fixes your issue. Thanks. Posted at 2022-01-07 by Fteacher Back on it ! So I download the new v0.04 and it works. But as soon as I change the HR min or max, the HR doesn't show up anymore. Also, the HR circle moves back to center after changing min or max HR. I hope it gives you clues. I prefered the HR in the center btw :). Posted at 2022-01-07 by myxor Thanks for testing. Posted at 2022-01-07 by Fteacher I had the issue on giving the values "HR min 55" and also on HR max 195 and 190. Posted at 2022-01-08 by Fteacher The v0.04 now works on my watch, even when I change min and max HR. I tried to change other settings (moving circles, having weather and distance) and everything kept on working fine. It's all perfectly readable, but because HR circle doesn't contain any "k" or "%" it has a bit of extra spare space (even with 3 digits) that could be used for 1 or 2 extra points of font size. Posted at 2022-01-10 by myxor Thanks for all your feedback. Changes are now merged into master. Feel free to add further feedback here in the future. Posted at 2022-02-03 by Fteacher Hi Myxor, Posted at 2022-02-03 by myxor Hi @FTeacher, The limit for the heart rate does not limit the actual values (as they come directly from the firmware) but they limit the boundaries of the circle. Does this help you? Posted at 2022-02-04 by Fteacher Hi @myxor thanks for the explanation. Posted at 2022-02-04 by myxor @FTeacher You are welcome. If you have any ideas or wishes feel free to post them here and i will see what i can do. Posted at 2022-02-06 by HughB @myxor - have you thought about maybe aligning the time, date, day centrally so that they all line up. It looks a bit odd right aligned. Also might be improved by choosing a custom font like Roboto or Lato as the Vector font, whilst functional and scalable, is not the most attractive. Posted at 2022-02-07 by Fteacher Where can I modify the translations ? In French, below the time clock I have the day of the week, date and month (too much infos, it doesn't fit well), the line below I have the day of the week again. Posted at 2022-02-07 by myxor @hughb i will have a look at those fonts and the alignment of the time and date. Thanks for your feedback. @FTeacher probably the french date format in this file https://github.com/espruino/BangleApps/blob/master/apps/locale/locales.js#L261 is not correct. Maybe you can have a look there. Posted at 2022-02-07 by HughB
I did a doughnut guage in a couple of my Bangle 1 apps and found drawing these guauges is quite hard to get then looking really crisp. Your code looks similar to the solution I used where you rotate a smaller circle around an arc to get a clean edge. I came to the conclusion that either the gauges needed to be drawn in the firmware or maybe pieced together from say a 5% segment image that was rotated round the circle. I dont really have the knowledge to do this in SVG or TheGimp so I never tried it. But might be something worth trying out. Update - I have not tried you app for a while but see you have added weather so interested to see how the icons come out for those. Posted at 2022-02-08 by Fteacher Thanks for the link at @myxor . I didn't see anything that looked wrong there. I attached what I attached a pic where we can see I have the day twice. Attachments: Posted at 2022-02-08 by myxor @FTeacher i see that there is a "%A" in the datePattern object in the french locale JSON block:
the "%A" will write "mardi" today as part of the date. @FTeacher maybe you can confirm my proposed changes? Posted at 2022-02-08 by myxor Yes, i most probably re-used your solution. Posted at 2022-02-08 by Fteacher I tried to check and confirm in Github, but I'm new to github. After a short while I understood that Gordon has been faster and the change has been checked and already merged ! Posted at 2022-02-08 by Fteacher Ah, I might be able to help @myxor with Inkscape if you tell me what you want. Attached, a gauge as .png and .svg Attachments: Posted at 2022-02-08 by myownself Regarding the gauge question, somewhere in a thread I posted code for drawing a ring. It used the Andres circle algorithm. I have some variations for drawing partial circles (for a gauge) on my computer. It worked wonderfully in the emulator but when I got my hands on the real thing it was too slow, so it is on my to do list to redo in C. I notice that there is already code in Espruino to draw a thick ring (filled annulus) but doesn't seem to be exposed in JavaScript, so that could be a starting point for a different approach, but in current form doesn't deal with the "partial" bit. Posted at 2022-02-08 by myxor It would be awesome if you could help out implementing a gauge functionality in espruino C! :) Posted at 2022-02-11 by Fteacher It looks almost perfect now. Just a glitch: it looks like "11 février 202" And I don't have the last number for the year, but that's something I can usually figure out :). Posted at 2022-02-11 by Fteacher @MyOwnSelf @hughb I can draw you nice looking gauges in inkscape in .svg format, but it seems that myownself can code it. Do I understand right that it would much better if coded ? Posted at 2022-02-11 by myownself It depends. I think the end result will probably not be identical, and I have no idea what is more efficient. Posted at 2022-02-11 by Fteacher I'll probably spend a bit of time drawing one next week and post it here, just in case it may come handy to one of you. Any preference about how it should look like ? Posted at 2022-02-11 by HughB So I guess a few different diameters are needed. First the size of the circles in the circles clock. Then I imagine one large one as big as it can be drawn on the Bangle taking into account the top widget area. Posted at 2022-02-12 by Fteacher So it took me much longer than I expected, but here it is, I made a gauge with a different design as .svg. Because it's drawings in inkscape and not code, I made it in a way that looks nice to me. It's not circular on purpose, I've troncated a disc with a spiral. I used the 5% increment that you suggested and filled with random colours just to show what it looks like. I've also cut the bottom of the gauge like in the circle. Attachments: Posted at 2022-02-12 by HughB examples of the sort of ring guage I would like to be able to draw are below. Attachments: Posted at 2022-02-13 by Fteacher Here it is. That was actually much quicker to draw than the previous drawing. I used 6 degrees segments. Feel free to use it, consider it's CC0. Attachments: Posted at 2022-02-13 by HughB Apologies I didn't explain the concept very well. In order to turn this into code that we can say R - is the external radius of the gauge - for circles clock with 3 circles this is 25 pixels. Actually two colored images are needed one for the main guage colour and one for the background (not yet completed colour) though this can be done through code. The rest of the image needs to be transparent to colour so that it will be black if the background is black. Again once we have the basic image worked, the transparency and colour can be set in the Bangle image converter and via code. To draw the gauge the a loop is used to work out to rotate the image by 6 desgrees and move it around the circle by the appropriate x,y values worked out through sin/cos etc. Once the % has reach the value of p the code switches to draw the remainder of the gauge in the gray colour. I will look up the values that I think are needed for t and R for the circle clock. Attachments: Posted at 2022-02-13 by HughB Maybe the segment angle should be 12 or 18 degree's. With 18 degrees - it represents 5% and that is probably enough for the small circle gauges. Attachments: Posted at 2022-02-14 by Fteacher Thanks for all the explanations, now I understand what and why. Attachments: Posted at 2022-02-14 by HughB Thanks @FTeacher - any chance these could be exported to PNG files of size h * w ? I know nothing about SVG really :( Posted at 2022-02-15 by Fteacher @hughb The .SVG is a version of the image made with vectors, the image can be very small or the size can be increased a hundred times, there's no quality loss. Attachments: Posted at 2022-02-16 by HughB Many thanks @FTeacher. I'm not sure how to download these as files, I cant see a filename to click on to save as from. Can the images be saved as seg12green.png, seg12grey.png etc. Or maybe they will need to be renamed as xxx.png.txt so that they get treated as TXT files when attached to this forum. Once downloaded I can rename them back to png. Posted at 2022-02-16 by Fteacher @hughb the names of the segments were already very similar to what you suggested. I modified them adding .txt. They're attached to this message. If it doesn't work so, then I'll try to PM you. Attachments:
Posted at 2022-02-17 by Fteacher @hughb I updated to v0.10. Posted at 2022-02-17 by uname Is there a reason why the top one/two millimeters are not used? Posted at 2022-02-17 by myxor This has no technical only estetic reason. Thanks Posted at 2022-02-17 by HughB Not been very successful with the segment image approach. Not very happy with the results so far - might have to revert to editing the segment pixel by pixel to get it right. Test code below:
Attachments: Posted at 2022-02-18 by Fteacher Hi @myxor I don't know what's bpp is and if I can do anything to improve these .png. Posted at 2022-02-18 by myxor I guess you linked me unintentionally and wanted to link @hughb, right? But i can help here: bpp is the color depth (bits per pixel): Posted at 2022-02-18 by HughB It may still be the right approach but there could be an issue with exporting from SVG to PNG for small sized images. Some of the pixels were dithered. Thanks for your help. I'll do some more experiments and come back to you if I need anything. Really apprecaite the time you have spent on this, its not something I could have done. Posted at 2022-02-19 by @MaBecker What about adding drawGauge() and fillGauge() to the graphics lib? Posted at 2022-02-20 by Fteacher @myxor Yep, sorry for that, and thanks for your answer. Attachments: Posted at 2022-02-20 by HughB
Once they produce really crisp results I would agree. But I dont think we have yet found the best way to do this. @FTeacher - I tried some experiements with gimp last night and have come to the conclusion that I will use a series of fixed images at different percentages to do a really crisp gauge. Trying to draw crisp images on this hardware is subject to lots of limitations. If the screen resolution was more like 360x360 it would be less of a problem. Most of the latest smartwatches are using much higher resolution. I dont need any help at the moment. Will share some results (which are looking really good) soon. Posted at 2022-02-20 by HughB OK here's the results of my experiements. Below are some examples of the stages of the ring and my prototype proof of concept clock. I will redo this clock with better fonts and add some of the features I have put in the pastel clock. I think the result will be very pleasing (at least to me anyway). Attachments: Posted at 2022-02-21 by Fteacher Very excited about that ! If it's something people can reuse easily in different apps, that's awesome. Posted at 2022-02-23 by HughB I have just done a PR for 'The Ring' which is a proof of concept, And a new clock called 'Daisy' which is derived from 'The Ring', 'Pastel' and 'Lazybones'. Posted at 2022-02-23 by Fteacher Well done @hughb ! I like the ring . Attachments: Posted at 2022-02-23 by HughB
I think we would have to try it out. Once you have such an image I will run it through the image converter and we can have a look at how it looks in practice. I could write some simple instructions / code for you to try out different images. There is also the image clock that allows you to upload and image. Posted at 2022-02-24 by Fteacher I have no experience with that, so this is my first shot! I did it with inkscape, it's easier for me to modify it once the drawing is ready. I used 13° with 2° black between each section and therefore I have 24 sections. Attachments: Posted at 2022-02-24 by HughB Thanks @FTeacher - the images need to be 178x178 pixels - this is to match the size of the Bangle JS 2 screen. The images above are 371x371. This means the images will need to be scaled by some other software tool. Once you start scaling an image you loose image quality and it may not look right, gain artifacts etc. Is it possible to redo in 178x178 pixels. There is no need to use the imageconverter at this point in time. Once you have a PNG file it can be uploaded using the IDE and viewed on the watch by installing the To upload an image through the IDE
Posted at 2022-02-25 by @gfwilliams Just FYI the screen is 176 x 176 (not 178) so that should really be the target for image sizes Posted at 2022-02-25 by Fteacher That explains why my circle is close to the edge ! Attachments: |
Beta Was this translation helpful? Give feedback.
-
Posted at 2022-01-06 by Fteacher
The Circle app is really stylish : it gives all the important information in a glance, it looks finely designed and works like a charm. The messages from gadgetbridge still make it through, that’s neat ! I adopted it, to me it’s the face of Bangle.js2. Thousands of thanks to @myxor for this.
With my degree zero of knowledge in coding, I just slightly increased the HR font size so that it’s more readable, I had difficulties reading it with the original font size. If I had time and someone to explain me the basics (but I don’t), I would try to slightly increase the size of the circles so that the info inside can be slightly bigger and therefore more readable. If nobody does it, I will check and do it, but it's gonna take months for me to find time and figure out the basics.
Beta Was this translation helpful? Give feedback.
All reactions