Hi y'all,
I've got two questions I want resolved to create better watchfaces so thanks if you would like to answer them.
1. There is an uploaded watchface (but can't recall which one) that lets users choose some options through Garmin Express or Garmin Connect
So how do I create a user choice in a watchface like say : change color of face, second timezone instead of utc time,...
2. When using a bitmap without dithering, the colors are often gone. Did anyone try to include a color palette to get the colors back ? I've tried the commands from the guide but the compiler doesn't even accept them.
According to the guide : http://developer.garmin.com/connect-iq/programmers-guide/resource-compiler/
While each device has a unique palette, the developer can specify a palette to use for an image. The resource compiler will map the colors that are defined in the developer’s palette to the closest match in the device palette and use only those colors. A palette can be defined using the following syntax:
<resources>
<bitmap id="bitmap_id" filename="path/for/image">
<palette>
<color>FF0000</color>
<color>FFFFFF</color>
<color>0000FF</color>
</palette>
</bitmap>
</resources>
Thank you for helping.