Weather watch face for Pebble.
This is mostly hacked together from the hard work of many others including: @Katharine, Niknam Moslehi, Martin Rosinski, Hank, @lkorth and probably others.
Android users seem to be missing the weather icon image, but I have no idea why. Please help!
I had to the patch the Pebble SDK to allow ° in the characterRegex.
"characterRegex": "[:0-9A-Z°]",
[https://github.com/fisakov/pebble-sdk-characterRegex]
I think this might be done differently on CloudPebble.
"characterRegex": "[:0-9A-Z\u00b0]", << or something like that
I have excluded the .otf files used from github, but instructions to download them can be found in /resources/src/fonts/fonts.txt
You can build lots of variants of Chunk:
-
Black on White
resources.json - make sure all image paths are 'images/'
config.h SPLIT_MODE 0 COLOUR_TEXT_TOP_SPLIT GColorBlack COLOUR_TEXT_BOTTOM_SPLIT GColorBlack -
White on Black
resources.json - make sure all image paths are 'black_images/'
config.h SPLIT_MODE 0 COLOUR_TEXT_TOP_SPLIT GColorWhite COLOUR_TEXT_BOTTOM_SPLIT GColorWhite -
Split 1 - Black top / White bottom
resources.json - make sure all image paths are 'black_images/'
config.h SPLIT_MODE 1 COLOUR_TEXT_TOP_SPLIT GColorWhite COLOUR_TEXT_BOTTOM_SPLIT GColorBlack -
Split 2 - White top / Black bottom
resources.json - make sure all image paths are 'images/'
config.h SPLIT_MODE 1 COLOUR_TEXT_TOP_SPLIT GColorBlack COLOUR_TEXT_BOTTOM_SPLIT GColorWhite