Watch face: Huihai GT

Hi all,

This is my first watch face that I have done and now it is released to the public. https://apps.garmin.com/en-US/apps/1e8e94dd-2d62-46a5-8c95-7556760e6689

All of the settings can be done with phone or connect app. The following customization can be done:

- Fields can be customized to show: Altitude, Steps, Calories, Floors, Temperature, Pressure, Distance, Heart rate, Battery level or fields can be disabled to create cleaner look. The fields 2 and 3 is limited for shorter data fields.

Currently there are all 14 colors to choose from for personalizing the watch:

- The color of the field text can be customized

- The Background color can be customized

- The background color of the four data fields can be customized

- Fixed date with day name and number

- 1 sec interval for second update

- 10 sec ui update (fast mode)

- 60 sec update for data (slow mode)

What do you think of the face? Please share ideas for customizing the colors if you play with them. 

  • I would test it if it would be available for 735XT

  • Yeah, the screen resolution is sadly too low on 735XT for easy porting. Needs new scaled down fonts but I will keep that in mind for the future updates. Now the mainstream for resolution is the 240x240 but there will be more higher density screens in the future.  

  • Now added most of the special characters for days. Had a quite struggle to get the hr show "--" when no hr detected. null was giving me a really hard time...

  • Now added plenty of new features and support for all 240 px screenmodels. Angled font had a sligth facelift and now it is more readable. Check out the latest version from the IQ store!

    Finally learned that 

    var y = "x";

    if(y=="x") {do something} //never triggers... 

    Had to do all sort of other ways to get around this simple rule until I learned that this is the correct way

    if(y.equals("x")) {do something} //will triggers!

    Dough...