Dema
No, this cannot be changed for a set of images. To change this for circular or linear progress you need to open the watch face, in the "watchface" folder open the "index.js" file. In this file, find the line let progressHeartRate = (valueHeartRate - 71) / (targetHeartRate - 71); and in it ...
Search found 5 matches
- 13 Dec 2022, 18:17
- Jump to forum
- Jump to topic
Re: Amazfit GT3 Series Watch Face Editor (GTR 3, GTR 3 Pro, GTS 3)
A collection of code examples for use in watch faces.
- smooth second hand for GTR 3;
- smooth second hand for GTR 4;
- change the background with a button on the screen;
- switching between different elements with a button on the screen;
- starting vibration;
- data output at an angle;
- data ...
- smooth second hand for GTR 3;
- smooth second hand for GTR 4;
- change the background with a button on the screen;
- switching between different elements with a button on the screen;
- starting vibration;
- data output at an angle;
- data ...
- 15 Feb 2023, 14:22
- Jump to forum
- Jump to topic
Re: Amazfit GT3 Series Watch Face Editor (GTR 3, GTR 3 Pro, GTS 3)
Does anyone know the necessary code to display/hide elements of the AOD screen, by pressing a button on the main screen?
@SashaCX75's sample code only works to show/hide main screen elements, but not in AOD.
I had to add SysProSetBool then SysProGetBool to pass a variable and make AOD display ...
- 16 Feb 2023, 09:32
- Jump to forum
- Jump to topic
Re: Amazfit GT3 Series Watch Face Editor (GTR 3, GTR 3 Pro, GTS 3)
santicam above initview() add:
hmFS.SysProSetBool('a_word', false);
then inside initview():
const bool_name = hmFS.SysProGetBool('a_word')
in the place you want to control:
hmFS.SysProSetBool('a_word', true);
if (screenType = hmSetting.screen_type.AOD)
mFS.SysProSetBool('a_word', true ...
hmFS.SysProSetBool('a_word', false);
then inside initview():
const bool_name = hmFS.SysProGetBool('a_word')
in the place you want to control:
hmFS.SysProSetBool('a_word', true);
if (screenType = hmSetting.screen_type.AOD)
mFS.SysProSetBool('a_word', true ...
- 27 Jul 2023, 03:57
- Jump to forum
- Jump to topic
Re: Amazfit GT3 Series Watch Face Editor (GTR 3, GTR 3 Pro, GTS 3)
Is there a way to add an custom AOD to use even with different custom watchfaces?