Search found 15 matches

Return

by asoo
26 Jul 2025, 14:30
Jump to forum
Jump to topic

Re: Help with extracting special symbols from symbols


Hello everyone,

I love creating/porting watchfaces for fun. Asoo assisted me a lot during my beginner days (thank you very much). However, I have been experiencing a challenge when creating special symbols from fonts, e.g, the degree celcius (zero and C), AM/PM, error symbol (--), etc. I have ...
by SashaCX75
17 Jan 2025, 07:27
Jump to forum
Jump to topic

Re: Help with simulating watchface using Zepp OS [ balance]

Of course it's going to cause an error. Because if you look at the structure of the files before changing them, you will see that it is different. In the best case you can copy the init_view() function from one file to another. But you also need to m,eltn copy other elements besides the function.
by SashaCX75
17 Jan 2025, 19:02
Jump to forum
Jump to topic

Re: Help with simulating watchface using Zepp OS [ balance]

piotarock wrote: 17 Jan 2025, 09:15
What do you mean by "m,eltn copy"?
"But you will need to copy other elements besides the function."
A typo in the translation.
by SashaCX75
17 Jan 2025, 19:18
Jump to forum
Jump to topic

Re: Help with simulating watchface using Zepp OS [ balance]

piotarock
1. The editor makes watch faces on API 1. In Zeus CLI you have created code on API 2. They have fundamentally different code and cannot be copied. Create a watch face on API 1. If it is important for your design to use functions that are available only on API 2, you can take only ...
by asoo
23 Feb 2026, 14:31
Jump to forum
Jump to topic

Re: Seonds progress (linear mode) and also step


Hello devs,

Is it possible to use the editor to make second and step progress as shown in the image? Seondly, how can I add the week number using the editor by sasha? For example, week 10, day 100, etc.
https://i.postimg.cc/P5053WFN/sample.gif


Regarding the week section, I'm not sure.
But ...
by SashaCX75
23 Feb 2026, 19:12
Jump to forum
Jump to topic

Re: Seonds progress (linear mode) and also step


This is an example I've created; it's the simplest method I can think of.
But you need to create a 60-frame image to show this progress.

This is the simplest option and the easiest to adapt to different models.
But you can also make one image with the background as a mask. And under it, place ...
by asoo
24 Feb 2026, 12:44
Jump to forum
Jump to topic

Re: Seonds progress (linear mode) and also step


Thank you very much for the ideas @asoo


This is another example of using a single image, scrolling up and down by changing the x,y values ​​(in this case, the Y value) to show seconds and steps. Hope this is useful to you.

https://i.postimg.cc/9F5xK1n6/watch-A.gif
https://amazfitwatchfaces ...
by asoo
03 Jan 2025, 01:23
Jump to forum
Jump to topic

Re: Request for weather images


Hello,

I am learning how to create watchfaces. I am looking for the unedited/uncropped weather images such as the ones used by mirda69 in this watchface:

https://amazfitwatchfaces.com/gtr/view/34029

Thank you.

This is an image that I have collected for my own use. It is not sort as per ...
by Lattenknaller
14 Feb 2025, 07:47
Jump to forum
Jump to topic

Re: Help with color change on tap script

Try this
pointer is not an img in the code, it must be treated differently

let colornumber_main = 1
let totalcolors_main = 5
let namecolor_main = ''
let pointerstring = 'pointer_1.png'

function click_ColorStyle() {
if(colornumber_main>=totalcolors_main) {
colornumber_main=1;
}
else ...
by SashaCX75
15 Feb 2025, 18:02
Jump to forum
Jump to topic

Re: Help with color change on tap script


Try this
pointer is not an img in the code, it must be treated differently

Changing properties with hmUI.prop.MORE is correct in this case. But I don't understand why to add an additional variable ‘pointerstring’? I would change the function like this

let colornumber_main = 1
let totalcolors ...
by asoo
13 Mar 2025, 02:56
Jump to forum
Jump to topic

Re: Unknown weather issue


Hello developers, porters, and watchface creators,

I believe that you are all well. I have a question regarding the unknown weather image. Sometimes, when it rains the watchfaces (including the ones from Zepp) show 'unknown weather'. However, the watchfaces by mirda69 always indicate 'rain'. I ...
by SashaCX75
13 Mar 2025, 12:33
Jump to forum
Jump to topic

Re: Unknown weather issue

I think it's more correct to write to Amazfit support to have them fix this issue.

This may be a temporary solution for now. But you have to decide what is better for you: sometimes showing unknown weather instead of rain or sometimes showing rain instead of unknown weather. Personally, I've only ...
by asoo
14 Mar 2025, 06:22
Jump to forum
Jump to topic

Re: Change minute and hour color


Hello Devs,

How are you? I am trying to create a watchface where the digits on minute and hour hand change. I have followed the code implemented by @asoo but it seems I am missing a point. I have attached the screenshots of my folder and code. Please assist me on this.
https://i.postimg.cc ...
by asoo
14 Mar 2025, 10:51
Jump to forum
Jump to topic

Re: Change minute and hour color


The incorrect part is that the colors of minutes and hour digits are not changing on click. All the other items are changing apart from the digital time.


If your script is correct, when you change the color of some elements, it does not change color. You try to turn off the screen and turn it ...
by asoo
14 Mar 2025, 10:56
Jump to forum
Jump to topic

Re: Change minute and hour color


Thank you very much @asoo. I will attach the entire project once I leave my office. Should I PM you or its okay if I attach it here.


If you don't want to publish the project yet, PM me.

Or if you want others to help you fix it, you can attach it in the post.

PS. Others may have different and ...