|
|
|
@@ -14,10 +14,10 @@ typedef struct {
|
|
|
|
bool eu_date;
|
|
|
|
bool eu_date;
|
|
|
|
bool quick_start;
|
|
|
|
bool quick_start;
|
|
|
|
bool leading_zero;
|
|
|
|
bool leading_zero;
|
|
|
|
int background_color;
|
|
|
|
uint8_t background_color;
|
|
|
|
int number_base_color;
|
|
|
|
uint8_t number_base_color;
|
|
|
|
bool number_variation;
|
|
|
|
bool number_variation;
|
|
|
|
int ornament_base_color;
|
|
|
|
uint8_t ornament_base_color;
|
|
|
|
bool ornament_variation;
|
|
|
|
bool ornament_variation;
|
|
|
|
bool invert;
|
|
|
|
bool invert;
|
|
|
|
bool monochrome;
|
|
|
|
bool monochrome;
|
|
|
|
@@ -25,8 +25,8 @@ typedef struct {
|
|
|
|
bool btvibe;
|
|
|
|
bool btvibe;
|
|
|
|
bool contrast;
|
|
|
|
bool contrast;
|
|
|
|
bool nightsaver;
|
|
|
|
bool nightsaver;
|
|
|
|
int ns_start;
|
|
|
|
uint8_t ns_start;
|
|
|
|
int ns_stop;
|
|
|
|
uint8_t ns_stop;
|
|
|
|
bool backlight;
|
|
|
|
bool backlight;
|
|
|
|
bool weekday;
|
|
|
|
bool weekday;
|
|
|
|
|
|
|
|
|
|
|
|
@@ -62,6 +62,10 @@ enum {
|
|
|
|
|
|
|
|
|
|
|
|
#define SCREENSHOTMODE false
|
|
|
|
#define SCREENSHOTMODE false
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define DEBUG false
|
|
|
|
|
|
|
|
#define SUPERDEBUG false
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define EU_DATE (curPrefs.eu_date) // true == MM/DD, false == DD/MM
|
|
|
|
#define EU_DATE (curPrefs.eu_date) // true == MM/DD, false == DD/MM
|
|
|
|
#define WEEKDAY (curPrefs.weekday)
|
|
|
|
#define WEEKDAY (curPrefs.weekday)
|
|
|
|
#define CENTER_DATE (curPrefs.center)
|
|
|
|
#define CENTER_DATE (curPrefs.center)
|
|
|
|
@@ -85,7 +89,6 @@ enum {
|
|
|
|
#define ORNAMENT_BASE_COLOR_ARGB8 (curPrefs.ornament_base_color)
|
|
|
|
#define ORNAMENT_BASE_COLOR_ARGB8 (curPrefs.ornament_base_color)
|
|
|
|
#define NUMBER_ADD_VARIATION (curPrefs.number_variation)
|
|
|
|
#define NUMBER_ADD_VARIATION (curPrefs.number_variation)
|
|
|
|
#define ORNAMENT_ADD_VARIATION (curPrefs.ornament_variation)
|
|
|
|
#define ORNAMENT_ADD_VARIATION (curPrefs.ornament_variation)
|
|
|
|
|
|
|
|
|
|
|
|
#define BACKGROUND_COLOR PBL_IF_BW_ELSE((INVERT ? GColorWhite : GColorBlack), ((GColor8) { .argb = curPrefs.background_color }))
|
|
|
|
#define BACKGROUND_COLOR PBL_IF_BW_ELSE((INVERT ? GColorWhite : GColorBlack), ((GColor8) { .argb = curPrefs.background_color }))
|
|
|
|
|
|
|
|
|
|
|
|
#define FONT blocks
|
|
|
|
#define FONT blocks
|
|
|
|
@@ -93,24 +96,196 @@ enum {
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
typedef struct {
|
|
|
|
Layer *layer;
|
|
|
|
Layer *layer;
|
|
|
|
int prevDigit;
|
|
|
|
uint8_t prevDigit;
|
|
|
|
int curDigit;
|
|
|
|
uint8_t curDigit;
|
|
|
|
bool isalpha;
|
|
|
|
bool isalpha;
|
|
|
|
int divider;
|
|
|
|
uint8_t divider;
|
|
|
|
AnimationProgress normTime;
|
|
|
|
AnimationProgress normTime;
|
|
|
|
int slotIndex;
|
|
|
|
uint8_t slotIndex;
|
|
|
|
} digitSlot;
|
|
|
|
} digitSlot;
|
|
|
|
|
|
|
|
|
|
|
|
digitSlot slot[NUMSLOTS];
|
|
|
|
digitSlot slot[NUMSLOTS];
|
|
|
|
|
|
|
|
|
|
|
|
static char weekday_buffer[16];
|
|
|
|
static char weekday_buffer[2];
|
|
|
|
|
|
|
|
|
|
|
|
AnimationImplementation animImpl;
|
|
|
|
AnimationImplementation animImpl;
|
|
|
|
Animation *anim;
|
|
|
|
Animation *anim;
|
|
|
|
bool splashEnded = false;
|
|
|
|
static bool splashEnded = false, debug = false;
|
|
|
|
static bool debug = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
unsigned char blocks[][5][5] = {{
|
|
|
|
static const char * locales[6] = {"en", "de", "es", "fr", "it", "pt"};
|
|
|
|
|
|
|
|
static const char * weekdays[6][7] = {
|
|
|
|
|
|
|
|
{ "SU","MO","TU","WE","TH","FR","SA" }, // EN
|
|
|
|
|
|
|
|
{ "SO","MO","DI","MI","DO","FR","SA" }, // DE
|
|
|
|
|
|
|
|
{ "DO","LU","MA","MI","JU","VI","SA" }, // ES - from https://forums.getpebble.com/discussion/comment/166975/#Comment_166975
|
|
|
|
|
|
|
|
{ "DI","LU","MA","ME","JE","VE","SA" }, // FR - from https://www.quora.com/How-are-days-of-the-week-abbreviated-in-various-languages
|
|
|
|
|
|
|
|
{ "DO","LU","MA","ME","GI","VE","SA" }, // IT - from https://www.quora.com/How-are-days-of-the-week-abbreviated-in-various-languages
|
|
|
|
|
|
|
|
{ "DO","SG","TE","QA","QI","SX","SA" } // PT - from http://www.brazil-help.com/week.htm (is this correct?)
|
|
|
|
|
|
|
|
}; // required Letters: ADEFGHIJLMOQRSTUVWX
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static const uint8_t alphablocks[][5][5] = {
|
|
|
|
|
|
|
|
[65] = { // A
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,0,2,0,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[68] = { // D
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,0,2,0,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,0}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[69] = { // E
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,0,0,0},
|
|
|
|
|
|
|
|
{1,1,1,1,0},
|
|
|
|
|
|
|
|
{1,0,0,0,0},
|
|
|
|
|
|
|
|
{1,1,1,1,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[70] = { // F
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,0,0,0},
|
|
|
|
|
|
|
|
{1,1,1,1,0},
|
|
|
|
|
|
|
|
{1,0,0,0,0},
|
|
|
|
|
|
|
|
{1,0,2,2,2}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[71] = { // G
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,0,0,0},
|
|
|
|
|
|
|
|
{1,0,1,1,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[72] = { // H
|
|
|
|
|
|
|
|
{1,0,2,0,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,0,2,0,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[73] = { // I
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{0,0,1,0,0},
|
|
|
|
|
|
|
|
{2,0,1,0,2},
|
|
|
|
|
|
|
|
{0,0,1,0,0},
|
|
|
|
|
|
|
|
{1,1,1,1,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[74] = { // J
|
|
|
|
|
|
|
|
{2,0,1,1,1},
|
|
|
|
|
|
|
|
{0,0,0,0,1},
|
|
|
|
|
|
|
|
{2,2,2,0,1},
|
|
|
|
|
|
|
|
{0,0,0,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[76] = { // L
|
|
|
|
|
|
|
|
{1,0,2,0,2},
|
|
|
|
|
|
|
|
{1,0,2,0,2},
|
|
|
|
|
|
|
|
{1,0,2,0,2},
|
|
|
|
|
|
|
|
{1,0,0,0,0},
|
|
|
|
|
|
|
|
{1,1,1,1,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[77] = { // M
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,1,0,1},
|
|
|
|
|
|
|
|
{1,0,1,0,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,0,2,0,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[79] = { // O
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,0,2,0,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[81] = { // Q
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,0,1,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[82] = { // R
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{0,0,0,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,0,1,0},
|
|
|
|
|
|
|
|
{1,0,2,0,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[83] = { // S
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,0,0,0},
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{0,0,0,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[84] = { // T
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{0,0,1,0,0},
|
|
|
|
|
|
|
|
{2,0,1,0,2},
|
|
|
|
|
|
|
|
{2,0,1,0,2},
|
|
|
|
|
|
|
|
{2,0,1,0,2}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[85] = { // U
|
|
|
|
|
|
|
|
{1,0,2,0,1},
|
|
|
|
|
|
|
|
{1,0,2,0,1},
|
|
|
|
|
|
|
|
{1,0,2,0,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[86] = { // V
|
|
|
|
|
|
|
|
{1,0,2,0,1},
|
|
|
|
|
|
|
|
{1,0,2,0,1},
|
|
|
|
|
|
|
|
{1,0,2,0,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,0}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[87] = { // W
|
|
|
|
|
|
|
|
{1,0,2,0,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,0,1,0,1},
|
|
|
|
|
|
|
|
{1,0,1,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[88] = { // X
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{0,1,0,1,0},
|
|
|
|
|
|
|
|
{0,0,1,0,0},
|
|
|
|
|
|
|
|
{0,1,0,1,0},
|
|
|
|
|
|
|
|
{1,0,0,0,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[10] = {
|
|
|
|
|
|
|
|
{2,2,2,2,2},
|
|
|
|
|
|
|
|
{0,0,0,0,0},
|
|
|
|
|
|
|
|
{2,2,2,2,2},
|
|
|
|
|
|
|
|
{0,0,0,0,0},
|
|
|
|
|
|
|
|
{2,2,2,2,2}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[11] = {
|
|
|
|
|
|
|
|
{2,0,2,0,2},
|
|
|
|
|
|
|
|
{2,0,2,0,2},
|
|
|
|
|
|
|
|
{2,0,2,0,2},
|
|
|
|
|
|
|
|
{2,0,2,0,2},
|
|
|
|
|
|
|
|
{2,0,2,0,2}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[12] = {
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{0,0,0,0,0},
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{0,0,0,0,0},
|
|
|
|
|
|
|
|
{1,1,1,1,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[13] = {
|
|
|
|
|
|
|
|
{1,0,1,0,1},
|
|
|
|
|
|
|
|
{1,0,1,0,1},
|
|
|
|
|
|
|
|
{1,0,1,0,1},
|
|
|
|
|
|
|
|
{1,0,1,0,1},
|
|
|
|
|
|
|
|
{1,0,1,0,1}
|
|
|
|
|
|
|
|
}};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static const uint8_t blocks[][5][5] = {{
|
|
|
|
{1,1,1,1,1},
|
|
|
|
{1,1,1,1,1},
|
|
|
|
{1,0,0,0,1},
|
|
|
|
{1,0,0,0,1},
|
|
|
|
{1,0,2,0,1},
|
|
|
|
{1,0,2,0,1},
|
|
|
|
@@ -203,154 +378,11 @@ unsigned char blocks[][5][5] = {{
|
|
|
|
{1,1,1,1,1}
|
|
|
|
{1,1,1,1,1}
|
|
|
|
}};
|
|
|
|
}};
|
|
|
|
|
|
|
|
|
|
|
|
unsigned char alphablocks[][5][5] = {
|
|
|
|
static const uint8_t startDigit[18] = {
|
|
|
|
[65] = { // A
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,0,2,0,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[68] = { // D
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,0,2,0,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,0}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[69] = { // E
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,0,0,0},
|
|
|
|
|
|
|
|
{1,1,1,1,0},
|
|
|
|
|
|
|
|
{1,0,0,0,0},
|
|
|
|
|
|
|
|
{1,1,1,1,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[70] = { // F
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,0,0,0},
|
|
|
|
|
|
|
|
{1,1,1,1,0},
|
|
|
|
|
|
|
|
{1,0,0,0,0},
|
|
|
|
|
|
|
|
{1,0,2,2,2}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[72] = { // H
|
|
|
|
|
|
|
|
{1,0,2,0,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,0,2,0,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[73] = { // I
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{0,0,1,0,0},
|
|
|
|
|
|
|
|
{2,0,1,0,2},
|
|
|
|
|
|
|
|
{0,0,1,0,0},
|
|
|
|
|
|
|
|
{1,1,1,1,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[74] = { // J
|
|
|
|
|
|
|
|
{2,0,1,1,1},
|
|
|
|
|
|
|
|
{0,0,0,0,1},
|
|
|
|
|
|
|
|
{2,2,2,0,1},
|
|
|
|
|
|
|
|
{0,0,0,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[76] = { // L
|
|
|
|
|
|
|
|
{1,0,2,0,2},
|
|
|
|
|
|
|
|
{1,0,2,0,2},
|
|
|
|
|
|
|
|
{1,0,2,0,2},
|
|
|
|
|
|
|
|
{1,0,0,0,0},
|
|
|
|
|
|
|
|
{1,1,1,1,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[77] = { // M
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,1,0,1},
|
|
|
|
|
|
|
|
{1,0,1,0,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,0,2,0,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[79] = { // O
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,0,2,0,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[82] = { // R
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{0,0,0,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,0,1,0},
|
|
|
|
|
|
|
|
{1,0,2,0,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[83] = { // S
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{1,0,0,0,0},
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{0,0,0,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[84] = { // T
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{0,0,1,0,0},
|
|
|
|
|
|
|
|
{2,0,1,0,2},
|
|
|
|
|
|
|
|
{2,0,1,0,2},
|
|
|
|
|
|
|
|
{2,0,1,0,2}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[85] = { // U
|
|
|
|
|
|
|
|
{1,0,2,0,1},
|
|
|
|
|
|
|
|
{1,0,2,0,1},
|
|
|
|
|
|
|
|
{1,0,2,0,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[86] = { // V
|
|
|
|
|
|
|
|
{1,0,2,0,1},
|
|
|
|
|
|
|
|
{1,0,2,0,1},
|
|
|
|
|
|
|
|
{1,0,2,0,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,0}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[87] = { // W
|
|
|
|
|
|
|
|
{1,0,2,0,1},
|
|
|
|
|
|
|
|
{1,0,0,0,1},
|
|
|
|
|
|
|
|
{1,0,1,0,1},
|
|
|
|
|
|
|
|
{1,0,1,0,1},
|
|
|
|
|
|
|
|
{1,1,1,1,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[10] = {
|
|
|
|
|
|
|
|
{2,2,2,2,2},
|
|
|
|
|
|
|
|
{0,0,0,0,0},
|
|
|
|
|
|
|
|
{2,2,2,2,2},
|
|
|
|
|
|
|
|
{0,0,0,0,0},
|
|
|
|
|
|
|
|
{2,2,2,2,2}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[11] = {
|
|
|
|
|
|
|
|
{2,0,2,0,2},
|
|
|
|
|
|
|
|
{2,0,2,0,2},
|
|
|
|
|
|
|
|
{2,0,2,0,2},
|
|
|
|
|
|
|
|
{2,0,2,0,2},
|
|
|
|
|
|
|
|
{2,0,2,0,2}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[12] = {
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{0,0,0,0,0},
|
|
|
|
|
|
|
|
{1,1,1,1,1},
|
|
|
|
|
|
|
|
{0,0,0,0,0},
|
|
|
|
|
|
|
|
{1,1,1,1,1}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
[13] = {
|
|
|
|
|
|
|
|
{1,0,1,0,1},
|
|
|
|
|
|
|
|
{1,0,1,0,1},
|
|
|
|
|
|
|
|
{1,0,1,0,1},
|
|
|
|
|
|
|
|
{1,0,1,0,1},
|
|
|
|
|
|
|
|
{1,0,1,0,1}
|
|
|
|
|
|
|
|
}};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int startDigit[18] = {
|
|
|
|
|
|
|
|
11,12,12,11,11,12,10,13,12,11,12,11,11,12,10,13,12,10 // 2x h, 2x m, 4x date, 2x filler top, 4x filler sides, 2x filler bottom, 2x filler bottom sides
|
|
|
|
11,12,12,11,11,12,10,13,12,11,12,11,11,12,10,13,12,10 // 2x h, 2x m, 4x date, 2x filler top, 4x filler sides, 2x filler bottom, 2x filler bottom sides
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
unsigned char variation[] = {
|
|
|
|
static const uint8_t variation[100] = {
|
|
|
|
0b00000000, 0b00010000, 0b00000100, 0b00010000, 0b00000000,
|
|
|
|
0b00000000, 0b00010000, 0b00000100, 0b00010000, 0b00000000,
|
|
|
|
0b00010001, 0b00010000, 0b00000000, 0b00000101, 0b00010000,
|
|
|
|
0b00010001, 0b00010000, 0b00000000, 0b00000101, 0b00010000,
|
|
|
|
0b00000001, 0b00000000, 0b00000000, 0b00010100, 0b00010001,
|
|
|
|
0b00000001, 0b00000000, 0b00000000, 0b00010100, 0b00010001,
|
|
|
|
@@ -373,7 +405,7 @@ unsigned char variation[] = {
|
|
|
|
0b00000000, 0b00000001, 0b00010001, 0b00000101, 0b00010100
|
|
|
|
0b00000000, 0b00000001, 0b00010001, 0b00000101, 0b00010100
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static uint8_t shadowtable[] = {
|
|
|
|
static const uint8_t shadowtable[256] = {
|
|
|
|
192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,
|
|
|
|
192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,
|
|
|
|
192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,
|
|
|
|
192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,
|
|
|
|
192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,
|
|
|
|
192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,
|
|
|
|
@@ -392,7 +424,7 @@ static uint8_t shadowtable[] = {
|
|
|
|
240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255
|
|
|
|
240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255
|
|
|
|
};
|
|
|
|
};
|
|
|
|
// alpha should only be 0b??111111 where ?? = 00 (full shade), 01 (much shade), 10 (some shade), 11 (none shade)
|
|
|
|
// alpha should only be 0b??111111 where ?? = 00 (full shade), 01 (much shade), 10 (some shade), 11 (none shade)
|
|
|
|
static uint8_t alpha = 0b10111111;
|
|
|
|
static const uint8_t alpha = 0b10111111;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
/*
|
|
|
|
uint8_t combine_colors(uint8_t fg_color, uint8_t bg_color) {
|
|
|
|
uint8_t combine_colors(uint8_t fg_color, uint8_t bg_color) {
|
|
|
|
@@ -418,7 +450,7 @@ static bool contrastmode = false, previous_contrastmode = false, allow_animate =
|
|
|
|
|
|
|
|
|
|
|
|
static void handle_bluetooth(bool connected) {
|
|
|
|
static void handle_bluetooth(bool connected) {
|
|
|
|
if (DISCONNECT_VIBRATION && !connected) {
|
|
|
|
if (DISCONNECT_VIBRATION && !connected) {
|
|
|
|
static uint32_t const segments[] = { 200, 200, 50, 150, 200 };
|
|
|
|
static const uint32_t segments[] = { 200, 200, 50, 150, 200 };
|
|
|
|
VibePattern pat = {
|
|
|
|
VibePattern pat = {
|
|
|
|
.durations = segments,
|
|
|
|
.durations = segments,
|
|
|
|
.num_segments = ARRAY_LENGTH(segments),
|
|
|
|
.num_segments = ARRAY_LENGTH(segments),
|
|
|
|
@@ -427,8 +459,8 @@ static void handle_bluetooth(bool connected) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static GRect slotFrame(int i) {
|
|
|
|
static GRect slotFrame(int8_t i) {
|
|
|
|
int x, y, w, h;
|
|
|
|
int16_t x, y, w, h;
|
|
|
|
if (i<4) { // main digits
|
|
|
|
if (i<4) { // main digits
|
|
|
|
w = FONT_WIDTH;
|
|
|
|
w = FONT_WIDTH;
|
|
|
|
h = FONT_HEIGHT;
|
|
|
|
h = FONT_HEIGHT;
|
|
|
|
@@ -456,14 +488,14 @@ static GRect slotFrame(int i) {
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
x = ORIGIN_X; // i = 0 or 2
|
|
|
|
x = ORIGIN_X; // i = 0 or 2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
y = ORIGIN_Y - FONT_HEIGHT - SPACING_Y;
|
|
|
|
y = (int8_t) (ORIGIN_Y - FONT_HEIGHT - SPACING_Y);
|
|
|
|
} else if (i<14) { // side filler for round
|
|
|
|
} else if (i<14) { // side filler for round
|
|
|
|
w = FONT_WIDTH;
|
|
|
|
w = FONT_WIDTH;
|
|
|
|
h = FONT_HEIGHT;
|
|
|
|
h = FONT_HEIGHT;
|
|
|
|
if (i%2) {
|
|
|
|
if (i%2) {
|
|
|
|
x = ORIGIN_X + FONT_WIDTH + SPACING_X + FONT_WIDTH + SPACING_X;
|
|
|
|
x = ORIGIN_X + FONT_WIDTH + SPACING_X + FONT_WIDTH + SPACING_X;
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
x = (int) (ORIGIN_X - FONT_WIDTH - SPACING_X);
|
|
|
|
x = (int8_t) (ORIGIN_X - FONT_WIDTH - SPACING_X);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i<12) {
|
|
|
|
if (i<12) {
|
|
|
|
y = ORIGIN_Y;
|
|
|
|
y = ORIGIN_Y;
|
|
|
|
@@ -488,10 +520,10 @@ static GRect slotFrame(int i) {
|
|
|
|
return GRect(x, y, w, h);
|
|
|
|
return GRect(x, y, w, h);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static GColor8 getSlotColor(int x, int y, int digit, int pos, bool isalpha) {
|
|
|
|
static GColor8 getSlotColor(uint8_t x, uint8_t y, uint8_t digit, uint8_t pos, bool isalpha) {
|
|
|
|
int argb;
|
|
|
|
static uint8_t argb;
|
|
|
|
bool should_add_var = false;
|
|
|
|
static bool should_add_var = false;
|
|
|
|
int thisrect = FONT[digit][y][x];
|
|
|
|
uint8_t thisrect = FONT[digit][y][x];
|
|
|
|
if (isalpha) {
|
|
|
|
if (isalpha) {
|
|
|
|
thisrect = ALPHAFONT[digit][y][x];
|
|
|
|
thisrect = ALPHAFONT[digit][y][x];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -534,7 +566,7 @@ static GColor8 getSlotColor(int x, int y, int digit, int pos, bool isalpha) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (should_add_var || 1) {
|
|
|
|
if (should_add_var) {
|
|
|
|
if (argb == 0b11111111) {
|
|
|
|
if (argb == 0b11111111) {
|
|
|
|
argb -= variation[ ( y*5 + x + digit*17 + pos*19 )%sizeof(variation) ];
|
|
|
|
argb -= variation[ ( y*5 + x + digit*17 + pos*19 )%sizeof(variation) ];
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
@@ -542,7 +574,7 @@ static GColor8 getSlotColor(int x, int y, int digit, int pos, bool isalpha) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (pos >= 8) {
|
|
|
|
if (pos >= 8) {
|
|
|
|
int argb_temp = shadowtable[alpha & argb];
|
|
|
|
uint8_t argb_temp = shadowtable[alpha & argb];
|
|
|
|
if (argb_temp == BACKGROUND_COLOR.argb) {
|
|
|
|
if (argb_temp == BACKGROUND_COLOR.argb) {
|
|
|
|
argb_temp = argb;
|
|
|
|
argb_temp = argb;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -593,25 +625,22 @@ static void updateSlot(Layer *layer, GContext *ctx) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static unsigned short get_display_hour(unsigned short hour) {
|
|
|
|
static unsigned short get_display_hour(uint8_t hour) {
|
|
|
|
if (clock_is_24h_style()) {
|
|
|
|
if (clock_is_24h_style()) {
|
|
|
|
return hour;
|
|
|
|
return hour;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
unsigned short display_hour = hour % 12;
|
|
|
|
uint8_t display_hour = hour % 12;
|
|
|
|
return display_hour ? display_hour : 12;
|
|
|
|
return display_hour ? display_hour : 12;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void setupAnimation() {
|
|
|
|
static void setupAnimation() {
|
|
|
|
if (debug) {
|
|
|
|
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "Setting up anim");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
anim = animation_create();
|
|
|
|
anim = animation_create();
|
|
|
|
animation_set_delay(anim, 0);
|
|
|
|
animation_set_delay(anim, 0);
|
|
|
|
animation_set_duration(anim, contrastmode ? 500 : DIGIT_CHANGE_ANIM_DURATION);
|
|
|
|
animation_set_duration(anim, contrastmode ? 500 : DIGIT_CHANGE_ANIM_DURATION);
|
|
|
|
animation_set_implementation(anim, &animImpl);
|
|
|
|
animation_set_implementation(anim, &animImpl);
|
|
|
|
animation_set_curve(anim, AnimationCurveEaseInOut);
|
|
|
|
animation_set_curve(anim, AnimationCurveEaseInOut);
|
|
|
|
if (debug) {
|
|
|
|
if (debug) {
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "Done setting up anim %i", (int)anim);
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "Set up anim %i", (int)anim);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@@ -623,8 +652,8 @@ static void destroyAnimation() {
|
|
|
|
anim = NULL;
|
|
|
|
anim = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void handle_tick(struct tm *t, TimeUnits units_changed) {
|
|
|
|
static void handle_tick(struct tm *t, TimeUnits units_changed) {
|
|
|
|
int ho, mi, da, mo, i;
|
|
|
|
static uint8_t ho, mi, da, mo;
|
|
|
|
|
|
|
|
|
|
|
|
if (splashEnded && !initial_anim) {
|
|
|
|
if (splashEnded && !initial_anim) {
|
|
|
|
if (animation_is_scheduled(anim)){
|
|
|
|
if (animation_is_scheduled(anim)){
|
|
|
|
@@ -635,27 +664,23 @@ void handle_tick(struct tm *t, TimeUnits units_changed) {
|
|
|
|
mi = t->tm_min;
|
|
|
|
mi = t->tm_min;
|
|
|
|
da = t->tm_mday;
|
|
|
|
da = t->tm_mday;
|
|
|
|
mo = t->tm_mon+1;
|
|
|
|
mo = t->tm_mon+1;
|
|
|
|
if (debug) {
|
|
|
|
if (debug && SUPERDEBUG) {
|
|
|
|
//ho = 9;
|
|
|
|
ho = 8+(mi%4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t localeid = 0;
|
|
|
|
|
|
|
|
static char weekdayname[3];
|
|
|
|
|
|
|
|
static char locale[3];
|
|
|
|
|
|
|
|
strncpy(locale, i18n_get_system_locale(), 2);
|
|
|
|
if (WEEKDAY) {
|
|
|
|
if (WEEKDAY) {
|
|
|
|
strftime(weekday_buffer, sizeof(weekday_buffer), "%a", t);
|
|
|
|
strftime(weekday_buffer, sizeof(weekday_buffer), "%w", t);
|
|
|
|
for (int i=0; i<2; i++) {
|
|
|
|
for (uint8_t lid = 0; lid < 6; lid++) {
|
|
|
|
if ((int) weekday_buffer[i] == 225) { // á
|
|
|
|
if (strncmp(locales[lid], locale, 2) == 0) { localeid = lid; }
|
|
|
|
weekday_buffer[i] = 65; // A
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((int) weekday_buffer[i] > 90) { // lower case
|
|
|
|
uint8_t weekdaynum = ((int)weekday_buffer[0])-0x30;
|
|
|
|
weekday_buffer[i] =weekday_buffer[i]-0x20; // make upper case
|
|
|
|
if (debug && SUPERDEBUG) {
|
|
|
|
}
|
|
|
|
weekdaynum = (int)mi%7;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (debug) {
|
|
|
|
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "It is now %d:%d %d.%d.", (int)ho, (int)mi, (int)da, (int)mo);
|
|
|
|
|
|
|
|
if (WEEKDAY) {
|
|
|
|
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "The Weekday is %c%c", weekday_buffer[0], weekday_buffer[1]);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
strcpy(weekdayname, weekdays[localeid][weekdaynum]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
allow_animate = true;
|
|
|
|
allow_animate = true;
|
|
|
|
@@ -663,14 +688,14 @@ void handle_tick(struct tm *t, TimeUnits units_changed) {
|
|
|
|
if (DISABLE_ANIM_START_TIME == DISABLE_ANIM_END_TIME) {
|
|
|
|
if (DISABLE_ANIM_START_TIME == DISABLE_ANIM_END_TIME) {
|
|
|
|
allow_animate = false;
|
|
|
|
allow_animate = false;
|
|
|
|
if (debug) {
|
|
|
|
if (debug) {
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "No Animation because activation and deactivation times are the same");
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "Animation always off");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (DISABLE_ANIM_START_TIME > DISABLE_ANIM_END_TIME) {
|
|
|
|
} else if (DISABLE_ANIM_START_TIME > DISABLE_ANIM_END_TIME) {
|
|
|
|
// across midnight
|
|
|
|
// across midnight
|
|
|
|
if (t->tm_hour >= DISABLE_ANIM_START_TIME || t->tm_hour < DISABLE_ANIM_END_TIME) {
|
|
|
|
if (t->tm_hour >= DISABLE_ANIM_START_TIME || t->tm_hour < DISABLE_ANIM_END_TIME) {
|
|
|
|
allow_animate = false;
|
|
|
|
allow_animate = false;
|
|
|
|
if (debug) {
|
|
|
|
if (debug) {
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "No Animation because time is between %d:00 and %d:00", (int)DISABLE_ANIM_START_TIME , (int)DISABLE_ANIM_END_TIME );
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "Animation off (%d:00 - %d:00)", (int)DISABLE_ANIM_START_TIME , (int)DISABLE_ANIM_END_TIME );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
@@ -678,13 +703,13 @@ void handle_tick(struct tm *t, TimeUnits units_changed) {
|
|
|
|
if (t->tm_hour >= DISABLE_ANIM_START_TIME && t->tm_hour < DISABLE_ANIM_END_TIME) {
|
|
|
|
if (t->tm_hour >= DISABLE_ANIM_START_TIME && t->tm_hour < DISABLE_ANIM_END_TIME) {
|
|
|
|
allow_animate = false;
|
|
|
|
allow_animate = false;
|
|
|
|
if (debug) {
|
|
|
|
if (debug) {
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "No Animation because time is between %d:00 and %d:00", (int)DISABLE_ANIM_START_TIME , (int)DISABLE_ANIM_END_TIME );
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "Animation off (%d:00 - %d:00)", (int)DISABLE_ANIM_START_TIME , (int)DISABLE_ANIM_END_TIME );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
for (i=0; i<NUMSLOTS; i++) {
|
|
|
|
for (uint8_t i=0; i<NUMSLOTS; i++) {
|
|
|
|
slot[i].prevDigit = slot[i].curDigit;
|
|
|
|
slot[i].prevDigit = slot[i].curDigit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@@ -702,8 +727,8 @@ void handle_tick(struct tm *t, TimeUnits units_changed) {
|
|
|
|
if (WEEKDAY) {
|
|
|
|
if (WEEKDAY) {
|
|
|
|
slot[4].isalpha = true;
|
|
|
|
slot[4].isalpha = true;
|
|
|
|
slot[5].isalpha = true;
|
|
|
|
slot[5].isalpha = true;
|
|
|
|
slot[4].curDigit = (int) weekday_buffer[0];
|
|
|
|
slot[4].curDigit = (uint8_t) weekdayname[0];
|
|
|
|
slot[5].curDigit = (int) weekday_buffer[1];
|
|
|
|
slot[5].curDigit = (uint8_t) weekdayname[1];
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
slot[4].curDigit = mo/10;
|
|
|
|
slot[4].curDigit = mo/10;
|
|
|
|
slot[5].curDigit = mo%10;
|
|
|
|
slot[5].curDigit = mo%10;
|
|
|
|
@@ -725,8 +750,8 @@ void handle_tick(struct tm *t, TimeUnits units_changed) {
|
|
|
|
if (WEEKDAY) {
|
|
|
|
if (WEEKDAY) {
|
|
|
|
slot[6].isalpha = true;
|
|
|
|
slot[6].isalpha = true;
|
|
|
|
slot[7].isalpha = true;
|
|
|
|
slot[7].isalpha = true;
|
|
|
|
slot[6].curDigit = (int) weekday_buffer[0];
|
|
|
|
slot[6].curDigit = (uint8_t) weekdayname[0];
|
|
|
|
slot[7].curDigit = (int) weekday_buffer[1];
|
|
|
|
slot[7].curDigit = (uint8_t) weekdayname[1];
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
if (CENTER_DATE && mo < 10) {
|
|
|
|
if (CENTER_DATE && mo < 10) {
|
|
|
|
slot[6].curDigit = mo%10;
|
|
|
|
slot[6].curDigit = mo%10;
|
|
|
|
@@ -743,32 +768,20 @@ void handle_tick(struct tm *t, TimeUnits units_changed) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (NO_ZERO) {
|
|
|
|
if (NO_ZERO) {
|
|
|
|
if (debug) {
|
|
|
|
if (slot[0].curDigit == 0) {
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "Slot 0 was %d", (int) slot[0].prevDigit);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ho < 10 && slot[0].prevDigit >= 10) {
|
|
|
|
|
|
|
|
if (NUMSLOTS > 8) {
|
|
|
|
if (NUMSLOTS > 8) {
|
|
|
|
if (debug) {
|
|
|
|
if (slot[10].prevDigit != 10 && slot[10].prevDigit != 12) {
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "More than 8 slots");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (slot[10].prevDigit != 10 && slot[10].prevDigit < 12) {
|
|
|
|
|
|
|
|
slot[0].curDigit = 11;
|
|
|
|
slot[0].curDigit = 11;
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
slot[0].curDigit = 10;
|
|
|
|
slot[0].curDigit = 10;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
if (debug) {
|
|
|
|
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "8 slots or fewer");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (slot[0].prevDigit == 10) {
|
|
|
|
if (slot[0].prevDigit == 10) {
|
|
|
|
slot[0].curDigit = 11;
|
|
|
|
slot[0].curDigit = 11;
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
slot[0].curDigit = 10;
|
|
|
|
slot[0].curDigit = 10;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (debug) {
|
|
|
|
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "Slot 0 is now %d", (int) slot[0].curDigit);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (slot[4].curDigit == 0) {
|
|
|
|
if (slot[4].curDigit == 0) {
|
|
|
|
slot[4].curDigit = 10;
|
|
|
|
slot[4].curDigit = 10;
|
|
|
|
@@ -798,9 +811,6 @@ void handle_tick(struct tm *t, TimeUnits units_changed) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void initialAnimationDone() {
|
|
|
|
static void initialAnimationDone() {
|
|
|
|
if (debug) {
|
|
|
|
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "Stopped initial Animation");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
initial_anim = false;
|
|
|
|
initial_anim = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@@ -812,9 +822,6 @@ void handle_timer(void *data) {
|
|
|
|
curTime = time(NULL);
|
|
|
|
curTime = time(NULL);
|
|
|
|
handle_tick(localtime(&curTime), SECOND_UNIT|MINUTE_UNIT|HOUR_UNIT|DAY_UNIT|MONTH_UNIT|YEAR_UNIT);
|
|
|
|
handle_tick(localtime(&curTime), SECOND_UNIT|MINUTE_UNIT|HOUR_UNIT|DAY_UNIT|MONTH_UNIT|YEAR_UNIT);
|
|
|
|
initial_anim = true;
|
|
|
|
initial_anim = true;
|
|
|
|
if (debug) {
|
|
|
|
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "Starting initial Animation");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (initial_anim) {
|
|
|
|
if (initial_anim) {
|
|
|
|
app_timer_register(contrastmode ? 500 : DIGIT_CHANGE_ANIM_DURATION, initialAnimationDone, NULL);
|
|
|
|
app_timer_register(contrastmode ? 500 : DIGIT_CHANGE_ANIM_DURATION, initialAnimationDone, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@@ -842,13 +849,12 @@ void initSlot(int i, Layer *parent) {
|
|
|
|
layer_add_child(parent, s->layer);
|
|
|
|
layer_add_child(parent, s->layer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void deinitSlot(int i) {
|
|
|
|
static void deinitSlot(uint8_t i) {
|
|
|
|
layer_destroy(slot[i].layer);
|
|
|
|
layer_destroy(slot[i].layer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void animateDigits(struct Animation *anim, const AnimationProgress normTime) {
|
|
|
|
static void animateDigits(struct Animation *anim, const AnimationProgress normTime) {
|
|
|
|
int i;
|
|
|
|
for (uint8_t i=0; i<NUMSLOTS; i++) {
|
|
|
|
for (i=0; i<NUMSLOTS; i++) {
|
|
|
|
|
|
|
|
if (slot[i].curDigit != slot[i].prevDigit) {
|
|
|
|
if (slot[i].curDigit != slot[i].prevDigit) {
|
|
|
|
if (allow_animate) {
|
|
|
|
if (allow_animate) {
|
|
|
|
slot[i].normTime = normTime;
|
|
|
|
slot[i].normTime = normTime;
|
|
|
|
@@ -862,7 +868,6 @@ static void animateDigits(struct Animation *anim, const AnimationProgress normTi
|
|
|
|
|
|
|
|
|
|
|
|
static void setupUI() {
|
|
|
|
static void setupUI() {
|
|
|
|
Layer *rootLayer;
|
|
|
|
Layer *rootLayer;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
window_set_background_color(window, contrastmode ? GColorBlack : BACKGROUND_COLOR);
|
|
|
|
window_set_background_color(window, contrastmode ? GColorBlack : BACKGROUND_COLOR);
|
|
|
|
|
|
|
|
|
|
|
|
@@ -870,7 +875,7 @@ static void setupUI() {
|
|
|
|
|
|
|
|
|
|
|
|
rootLayer = window_get_root_layer(window);
|
|
|
|
rootLayer = window_get_root_layer(window);
|
|
|
|
|
|
|
|
|
|
|
|
for (i=0; i<NUMSLOTS; i++) {
|
|
|
|
for (uint8_t i=0; i<NUMSLOTS; i++) {
|
|
|
|
initSlot(i, rootLayer);
|
|
|
|
initSlot(i, rootLayer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@@ -884,8 +889,7 @@ static void setupUI() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void teardownUI() {
|
|
|
|
static void teardownUI() {
|
|
|
|
int i;
|
|
|
|
for (uint8_t i=0; i<NUMSLOTS; i++) {
|
|
|
|
for (i=0; i<NUMSLOTS; i++) {
|
|
|
|
|
|
|
|
deinitSlot(i);
|
|
|
|
deinitSlot(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@@ -938,76 +942,43 @@ static void in_received_handler(DictionaryIterator *iter, void *context) {
|
|
|
|
Tuple *weekday_t = dict_find(iter, KEY_WEEKDAY);
|
|
|
|
Tuple *weekday_t = dict_find(iter, KEY_WEEKDAY);
|
|
|
|
Tuple *debug_t = dict_find(iter, KEY_DEBUGWATCH);
|
|
|
|
Tuple *debug_t = dict_find(iter, KEY_DEBUGWATCH);
|
|
|
|
|
|
|
|
|
|
|
|
bool was_config = true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (debug_t) {
|
|
|
|
if (debug_t) {
|
|
|
|
if (debug_t->value->int8 == 1) {
|
|
|
|
if (debug_t->value->int8 == 1) {
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "Enabling debug infos for debug watch");
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "Setting debug watch");
|
|
|
|
debug = true;
|
|
|
|
debug = true;
|
|
|
|
was_config = false;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (was_config) {
|
|
|
|
if (debug) {
|
|
|
|
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "Got config");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (large_mode_t) { curPrefs.large_mode = large_mode_t->value->int8; }
|
|
|
|
|
|
|
|
if (eu_date_t) { curPrefs.eu_date = eu_date_t->value->int8; }
|
|
|
|
|
|
|
|
if (quick_start_t) { curPrefs.quick_start = quick_start_t->value->int8; }
|
|
|
|
|
|
|
|
if (leading_zero_t) { curPrefs.leading_zero = leading_zero_t->value->int8; }
|
|
|
|
|
|
|
|
if (background_color_t) { curPrefs.background_color = background_color_t->value->int8; }
|
|
|
|
|
|
|
|
if (number_base_color_t) { curPrefs.number_base_color = number_base_color_t->value->int8; }
|
|
|
|
|
|
|
|
if (number_variation_t) { curPrefs.number_variation = number_variation_t->value->int8; }
|
|
|
|
|
|
|
|
if (ornament_base_color_t) { curPrefs.ornament_base_color = ornament_base_color_t->value->int8; }
|
|
|
|
|
|
|
|
if (ornament_variation_t) { curPrefs.ornament_variation = ornament_variation_t->value->int8; }
|
|
|
|
|
|
|
|
if (invert_t) { curPrefs.invert = invert_t->value->int8; }
|
|
|
|
|
|
|
|
if (monochrome_t) { curPrefs.monochrome = monochrome_t->value->int8; }
|
|
|
|
|
|
|
|
if (center_t) { curPrefs.center = center_t->value->int8; }
|
|
|
|
|
|
|
|
if (btvibe_t) { curPrefs.btvibe = btvibe_t->value->int8; }
|
|
|
|
|
|
|
|
if (contrast_t) { curPrefs.contrast = contrast_t->value->int8; }
|
|
|
|
|
|
|
|
if (nightsaver_t) { curPrefs.nightsaver = nightsaver_t->value->int8; }
|
|
|
|
|
|
|
|
if (ns_start_t) { curPrefs.ns_start = ns_start_t->value->int8; }
|
|
|
|
|
|
|
|
if (ns_stop_t) { curPrefs.ns_stop = ns_stop_t->value->int8; }
|
|
|
|
|
|
|
|
if (backlight_t) { curPrefs.backlight = backlight_t->value->int8; }
|
|
|
|
|
|
|
|
if (weekday_t) { curPrefs.weekday = weekday_t->value->int8; }
|
|
|
|
|
|
|
|
|
|
|
|
if (large_mode_t) {
|
|
|
|
if (debug) {
|
|
|
|
curPrefs.large_mode = large_mode_t->value->int8;
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "Writing config");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (eu_date_t) {
|
|
|
|
|
|
|
|
curPrefs.eu_date = eu_date_t->value->int8;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (quick_start_t) {
|
|
|
|
|
|
|
|
curPrefs.quick_start = quick_start_t->value->int8;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (leading_zero_t) {
|
|
|
|
|
|
|
|
curPrefs.leading_zero = leading_zero_t->value->int8;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (background_color_t) {
|
|
|
|
|
|
|
|
curPrefs.background_color = background_color_t->value->int32;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (number_base_color_t) {
|
|
|
|
|
|
|
|
curPrefs.number_base_color = number_base_color_t->value->int32;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (number_variation_t) {
|
|
|
|
|
|
|
|
curPrefs.number_variation = number_variation_t->value->int8;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ornament_base_color_t) {
|
|
|
|
|
|
|
|
curPrefs.ornament_base_color = ornament_base_color_t->value->int32;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ornament_variation_t) {
|
|
|
|
|
|
|
|
curPrefs.ornament_variation = ornament_variation_t->value->int8;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (invert_t) {
|
|
|
|
|
|
|
|
curPrefs.invert = invert_t->value->int8;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (monochrome_t) {
|
|
|
|
|
|
|
|
curPrefs.monochrome = monochrome_t->value->int8;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (center_t) {
|
|
|
|
|
|
|
|
curPrefs.center = center_t->value->int8;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (btvibe_t) {
|
|
|
|
|
|
|
|
curPrefs.btvibe = btvibe_t->value->int8;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (contrast_t) {
|
|
|
|
|
|
|
|
curPrefs.contrast = contrast_t->value->int8;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nightsaver_t) {
|
|
|
|
|
|
|
|
curPrefs.nightsaver = nightsaver_t->value->int8;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ns_start_t) {
|
|
|
|
|
|
|
|
curPrefs.ns_start = ns_start_t->value->int8;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ns_stop_t) {
|
|
|
|
|
|
|
|
curPrefs.ns_stop = ns_stop_t->value->int8;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (backlight_t) {
|
|
|
|
|
|
|
|
curPrefs.backlight = backlight_t->value->int8;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (weekday_t) {
|
|
|
|
|
|
|
|
curPrefs.weekday = weekday_t->value->int8;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
persist_write_data(PREFERENCES_KEY, &curPrefs, sizeof(curPrefs));
|
|
|
|
persist_write_data(PREFERENCES_KEY, &curPrefs, sizeof(curPrefs));
|
|
|
|
|
|
|
|
if (debug) {
|
|
|
|
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "Wrote config");
|
|
|
|
|
|
|
|
}
|
|
|
|
vibes_short_pulse();
|
|
|
|
vibes_short_pulse();
|
|
|
|
#if defined(PBL_COLOR)
|
|
|
|
#if defined(PBL_COLOR)
|
|
|
|
if (curPrefs.contrast == false) {
|
|
|
|
if (curPrefs.contrast == false) {
|
|
|
|
@@ -1030,29 +1001,30 @@ static void in_received_handler(DictionaryIterator *iter, void *context) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (debug) {
|
|
|
|
if (debug) {
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "Tearing down");
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "Teardown");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
teardownUI();
|
|
|
|
teardownUI();
|
|
|
|
if (debug) {
|
|
|
|
if (debug) {
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "Setting up");
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "Setup");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
setupUI();
|
|
|
|
setupUI();
|
|
|
|
if (debug) {
|
|
|
|
if (debug) {
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "Done");
|
|
|
|
APP_LOG(APP_LOG_LEVEL_INFO, "Done");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void in_dropped_handler(AppMessageResult reason, void *context) {
|
|
|
|
static void in_dropped_handler(AppMessageResult reason, void *context) {
|
|
|
|
APP_LOG(APP_LOG_LEVEL_WARNING, "Dropped a message because %i", (int)reason);
|
|
|
|
APP_LOG(APP_LOG_LEVEL_WARNING, "Dropped message because %i", (int)reason);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void init() {
|
|
|
|
static void init() {
|
|
|
|
setlocale(LC_ALL, "en_US");
|
|
|
|
|
|
|
|
window = window_create();
|
|
|
|
window = window_create();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (DEBUG) {
|
|
|
|
|
|
|
|
debug = true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Set up preferences
|
|
|
|
// Set up preferences
|
|
|
|
if(persist_exists(PREFERENCES_KEY)){
|
|
|
|
if(persist_exists(PREFERENCES_KEY)){
|
|
|
|
persist_read_data(PREFERENCES_KEY, &curPrefs, sizeof(curPrefs));
|
|
|
|
persist_read_data(PREFERENCES_KEY, &curPrefs, sizeof(curPrefs));
|
|
|
|
|