5 Commits

4 changed files with 36 additions and 10 deletions
+8 -3
View File
@@ -1,7 +1,7 @@
{ {
"name": "civic-segments", "name": "civic-segments",
"author": "RandyTheSilly", "author": "RandyTheSilly",
"version": "1.0.0", "version": "1.0.1",
"keywords": [ "keywords": [
"honda", "honda",
"civic", "civic",
@@ -9,7 +9,11 @@
"display", "display",
"led", "led",
"speedometer", "speedometer",
"car" "car",
"replica"
],
"capabilities": [
"configurable"
], ],
"private": true, "private": true,
"dependencies": { "dependencies": {
@@ -21,7 +25,8 @@
"sdkVersion": "3", "sdkVersion": "3",
"enableMultiJS": true, "enableMultiJS": true,
"targetPlatforms": [ "targetPlatforms": [
"emery" "emery",
"gabbro"
], ],
"watchapp": { "watchapp": {
"watchface": true "watchface": true
+9 -1
View File
@@ -17,7 +17,11 @@ static Layer *s_fuel_mg_layer;
static Layer *s_fuel_layer; static Layer *s_fuel_layer;
static const uint8_t s_x_r = (PBL_DISPLAY_WIDTH / 2) + 2; static const uint8_t s_x_r = (PBL_DISPLAY_WIDTH / 2) + 2;
static const uint8_t s_x_l = (s_x_r - 2 * (69 / 2)) - 5; static const uint8_t s_x_l = (s_x_r - 2 * (69 / 2)) - 5;
static const GRect s_digit_grects[4] = {GRect(s_x_l, 2, 69, 110), GRect(s_x_r, 2, 69, 110), GRect(s_x_l, 116, 69, 110), GRect(s_x_r, 116, 69, 110)}; // emery #if PBL_DISPLAY_WIDTH == 200
static const GRect s_digit_grects[4] = {GRect(s_x_l, 2, 69, 110), GRect(s_x_r, 2, 69, 110), GRect(s_x_l, 116, 69, 110), GRect(s_x_r, 116, 69, 110)};
#else
static const GRect s_digit_grects[4] = {GRect(s_x_l, 18, 69, 110), GRect(s_x_r, 18, 69, 110), GRect(s_x_l, 132, 69, 110), GRect(s_x_r, 132, 69, 110)};
#endif
static const uint8_t s_temp_guage_x_pos = 6; static const uint8_t s_temp_guage_x_pos = 6;
static const uint16_t s_fuel_guage_x_pos = PBL_DISPLAY_WIDTH - 23; static const uint16_t s_fuel_guage_x_pos = PBL_DISPLAY_WIDTH - 23;
@@ -625,7 +629,11 @@ static void init() {
if (persist_exists(STORAGE_KEY_SETTINGS)) { if (persist_exists(STORAGE_KEY_SETTINGS)) {
persist_read_data(STORAGE_KEY_SETTINGS, &settings, sizeof(settings)); persist_read_data(STORAGE_KEY_SETTINGS, &settings, sizeof(settings));
} else { } else {
#if PBL_RECT
settings.EnablePeek = true; settings.EnablePeek = true;
#else
settings.EnablePeek = false;
#endif
settings.TrackBTStatus = false; settings.TrackBTStatus = false;
settings.ShowDigitsMG = false; settings.ShowDigitsMG = false;
settings.UseCustomLED = false; settings.UseCustomLED = false;
+1 -1
View File
@@ -33,7 +33,7 @@ module.exports = [
"messageKey": "CLAY_TRACK_BT_STATUS", "messageKey": "CLAY_TRACK_BT_STATUS",
"defaultValue": false, "defaultValue": false,
"label": "BT disconnect indicator", "label": "BT disconnect indicator",
"description": "Change the color of the digits to the configured warning color when the connection to the phone is lost." "description": "Change the color of the hour digits to the configured warning color when the app connection is lost."
}, },
{ {
"type": "slider", "type": "slider",
+18 -5
View File
@@ -2,14 +2,27 @@ function weatherFailure() {
Pebble.sendAppMessage({ PKJS_TEMP_BAR_COUNT: -1 }); Pebble.sendAppMessage({ PKJS_TEMP_BAR_COUNT: -1 });
} }
var xhrRequest = function (url, type, callback) { var xhrRequest = function (url, type, callback, retries) {
if (retries === undefined) {
retries = 2;
}
var xhr = new XMLHttpRequest(); var xhr = new XMLHttpRequest();
xhr.timeout = 7500; xhr.timeout = 7500;
xhr.onload = function () { xhr.onload = function () {
if (xhr.status === 200) { switch (xhr.status) {
callback(this.responseText); case 200:
} else { callback(this.responseText);
weatherFailure(); break;
case 503:
if (retries > 0) {
setTimeout(function () {
xhrRequest(url, type, callback, retries - 1);
}, 5000);
break;
}
// fallthrough
default:
weatherFailure();
} }
}; };
xhr.onerror = function () { xhr.onerror = function () {