La ricerca ha trovato 12 risultati

Return

da asoo
26 lug 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 ...
da SashaCX75
17 gen 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.
da SashaCX75
17 gen 2025, 19:02
Jump to forum
Jump to topic

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

piotarock ha scritto: 17 gen 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.
da SashaCX75
17 gen 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 ...
da asoo
03 gen 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 ...
da 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 ...
da 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 ...
da 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 ...
da 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 ...
da 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 ...
da 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 ...
da 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 ...