Version 11.0
Mirror
Completely redesigned the weather widget.
Added weather widget for several days (forecast).
Added support for Bip 5 Unity.
If you experience any problems with the forum (it is not visible, there is no way to post messages, or some functionality does not work), please let us know.
If you have problems with registration or you did not receive confirmation letter, let us know and we will activate your account manually.
If you get an "The submitted form was invalid. Try submitting again" error, delete cookies, then try again.
If you have problems with registration or you did not receive confirmation letter, let us know and we will activate your account manually.
If you get an "The submitted form was invalid. Try submitting again" error, delete cookies, then try again.
Пошук дав 421 результат
- 13 червня 2024, 16:25
- Jump to forum
- Jump to topic
- 03 липня 2024, 18:32
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
Lattenknaller
I think the problem is in the if (cc ==0 ) block on line 1607. You are trying to change the visibility of elements that are not on the ADS. In any case, if you remove this block, AOD works. Try to add screen type check to this block.
I also don't understand why you write let cc = 0 ...
I think the problem is in the if (cc ==0 ) block on line 1607. You are trying to change the visibility of elements that are not on the ADS. In any case, if you remove this block, AOD works. Try to add screen type check to this block.
I also don't understand why you write let cc = 0 ...
- 07 липня 2024, 13:37
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
@rush2112
Some functions do not work on older watch models.
You can send me a watch face where the functions don't work and I will check if it's a problem in the editor or if the functions just don't work on your model.
Some functions do not work on older watch models.
You can send me a watch face where the functions don't work and I will check if it's a problem in the editor or if the functions just don't work on your model.
- 09 липня 2024, 11:26
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
I would change the state of the variable like this
let compas_visible = true;
function click_COMPASS() {
compas_visible = !compas_visible;
if(compas_visible) UpdateCompassOne();
else UpdateCompassTwo();
if(compas_visible) hmUI.showToast({text: 'COMPASS ON'});
if(!compas_visible) hmUI ...
let compas_visible = true;
function click_COMPASS() {
compas_visible = !compas_visible;
if(compas_visible) UpdateCompassOne();
else UpdateCompassTwo();
if(compas_visible) hmUI.showToast({text: 'COMPASS ON'});
if(!compas_visible) hmUI ...
- 18 липня 2024, 05:51
- Jump to forum
- Jump to topic
Re: Gradient problem with png images
Send me the original image files (before converting them to dials). I will see if there is anything I can do about it.
- 19 липня 2024, 08:36
- Jump to forum
- Jump to topic
Re: Gradient problem with png images
https://i.postimg.cc/DZ1j9xcT/1721376580804.png
https://i.postimg.cc/KcrpQsz7/IMG-20240719-112533.jpg
Here is a photo of the watch and a screenshot taken on the watch (not in the editor). The photo shows more artefacts than the screenshot. This indicates that the screen cannot display smooth ...
https://i.postimg.cc/KcrpQsz7/IMG-20240719-112533.jpg
Here is a photo of the watch and a screenshot taken on the watch (not in the editor). The photo shows more artefacts than the screenshot. This indicates that the screen cannot display smooth ...
- 19 липня 2024, 17:00
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
Version 11.1
Mirror
Updated the digital time widget.
Updated shortcuts widget.
Added new application launch commands for buttons.
Mirror
Updated the digital time widget.
Updated shortcuts widget.
Added new application launch commands for buttons.
- 20 липня 2024, 21:15
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
rush2112 Judging by your description you don't have TEXT_FONT widget working. I already wrote you that not all editor functions work on older models.
In some cases this limitation can be bypassed by using sensor data and TEXT widget. But most of the data cannot be obtained from the sensor. So you ...
In some cases this limitation can be bypassed by using sensor data and TEXT widget. But most of the data cannot be obtained from the sensor. So you ...
- 20 липня 2024, 21:20
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
@rush2112 On the GTR 3 the display of steps in font works. So it seems to be a peculiarity of your model only.
- 17 серпня 2024, 18:47
- Jump to forum
- Jump to topic
Re: A program to reduce the size of a graphic file
It makes no sense to reduce image quality to reduce file size. Because if I remember correctly, in GTR 1 images are converted to a BMP-like format. So the only way to reduce the watch face is to reduce the width and height of the image. 1 pixel of the image requires 4 bytes.
- 07 вересня 2024, 09:09
- Jump to forum
- Jump to topic
- 15 вересня 2024, 16:29
- Jump to forum
- Jump to topic
Re: T-REX 3
https://watchface.zepp.com (WatchfaceMaker) creates two different packages for T-Rex 3 and for Balance. The images in them are also different. But the way of encoding images in them is similar. Perhaps T-Rex 3 does not support ARGB images, so some of the images for it were packaged differently. Only ...
- 16 вересня 2024, 18:05
- Jump to forum
- Jump to topic
Re: Watchface unpacking
The json file is just a manifest. It has never had any widget parameters in it. All widgets are in the js file. But sometimes the js file is encoded in bin and then you can't do anything with it.
I don't know for zmake. In my editor if you select the correct model then the images are extracted. Even ...
I don't know for zmake. In my editor if you select the correct model then the images are extracted. Even ...
- 19 вересня 2024, 10:17
- Jump to forum
- Jump to topic
Re: Watchfaces Editor does not recognize some watchface
This is "Watch face editor for Amazfit watch on ZeppOS" Versin 11.2 that I added data of T-Rex 3 to
model_config by myself (not official update from Sasha) can select device T-REX 3 in the editor
T-Rex 3 users who are interested can try to use it temporarily before the official update from Sasha ...
- 24 вересня 2024, 17:42
- Jump to forum
- Jump to topic
Re: Resources bank
Vector black and white icons
https://fonts.google.com/icons?icon.platform=web
https://pictogrammers.com/library/mdi/
https://fonts.google.com/icons?icon.platform=web
https://pictogrammers.com/library/mdi/
- 25 вересня 2024, 20:51
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
@Omaradsl Interface icons are standard size and I don't plan to change them.
The source code of the editor is available and you can modify the interface to suit your own needs.
https://github.com/SashaCX75/AmazFit-Wa ... /tree/test
The source code of the editor is available and you can modify the interface to suit your own needs.
https://github.com/SashaCX75/AmazFit-Wa ... /tree/test
- 09 жовтня 2024, 09:22
- Jump to forum
- Jump to topic
Re: Doubts about the "sunrise and sunset" option [GTS 2]
Normal Progress - A circular scale that fills in over time. Set the line width and you will see it in the preview.
Pointer Progress - Arrow Pointer. The arrow will move from the start angle during sunrise to the end angle during sunset. Judging by the screenshot this looks more like what you need.
Pointer Progress - Arrow Pointer. The arrow will move from the start angle during sunrise to the end angle during sunset. Judging by the screenshot this looks more like what you need.
- 16 жовтня 2024, 15:57
- Jump to forum
- Jump to topic
Re: Smooth Second - GTR Mini - Watch face editor for Amazfit watch on ZeppOS by SashaCX75
The variable for the smooth second hand is named ‘normal_analog_clock_clock_time_pointer_smooth_second’
And you are trying to change ‘normal_analog_clock_pro_second_pointer_img’
And you are trying to change ‘normal_analog_clock_pro_second_pointer_img’
- 17 жовтня 2024, 16:02
- Jump to forum
- Jump to topic
Re: What is your coding environment and workflow?
In my editor you can make a template for such watch faces. And then you can add necessary functions yourself using this documentation and basic knowledge of JS.
- 19 жовтня 2024, 19:19
- Jump to forum
- Jump to topic
Re: Smooth Second - GTR Mini - Watch face editor for Amazfit watch on ZeppOS by SashaCX75
Why don't you open the watch face code and see for yourself what the variable is named?
I think this typo will be corrected in the next versions.
I think this typo will be corrected in the next versions.
- 24 жовтня 2024, 20:42
- Jump to forum
- Jump to topic
Re: Smooth Second - GTR Mini - Watch face editor for Amazfit watch on ZeppOS by SashaCX75
@lobianco It is indeed my mistake. I have no idea how it could happen, because I copied the variable name.
- 28 жовтня 2024, 17:38
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
Version 12.1
Mirror
Added transparency for some widgets. Does not work on all models.
Added support for Amazfit T-Rex 3.
Mirror
Added transparency for some widgets. Does not work on all models.
Added support for Amazfit T-Rex 3.
- 31 жовтня 2024, 21:17
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
@Omaradsl
Both links are working
Both links are working
- 17 листопада 2024, 13:19
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
Joker18 You can't do it in the editor.
You need to write additional code yourself. You need to get the time of sunrise and sunset from the weather sensor. Knowing this time, calculate the rotation angle of each pointer and rotate it.
I don't understand the purpose of the middle scale on your image ...
You need to write additional code yourself. You need to get the time of sunrise and sunset from the weather sensor. Knowing this time, calculate the rotation angle of each pointer and rotate it.
I don't understand the purpose of the middle scale on your image ...
- 17 листопада 2024, 14:31
- Jump to forum
- Jump to topic
Re: Watch face editor for Amazfit watch on ZeppOS
Joker18 Using images may not be the right solution. In some cities, the time does not correspond to their geographical time zone. Some countries have summer time and some do not. Even if cities are in the same time zone sunrise and sunset times can differ by an hour. So this way you can only make a ...