From 3533c47e4ae11df4098df23ad41d9f36789f6aef Mon Sep 17 00:00:00 2001 From: bendtherules Date: Tue, 28 Nov 2023 20:34:32 +0530 Subject: [PATCH] Change to blue font --- build/esp12e/firmware.bin | Bin 396256 -> 396256 bytes include/version.h | 6 +++--- src/myDisplay.cpp | 2 +- src/myOTA.cpp | 3 --- versioning.html | 2 +- 5 files changed, 5 insertions(+), 8 deletions(-) diff --git a/build/esp12e/firmware.bin b/build/esp12e/firmware.bin index 189fc2a074ae948711a35b1ba77e78bcb57be70b..991c4f18ee1a64b6b409047b0a31fd649014e812 100644 GIT binary patch delta 93 zcmaDbUE;xXi47tGED{{sbv8=~XmB$IZ+4WP&dwM%`KFSL(9i!e>`u-MGEbbG8I_!w u4Eg_UW>=16;XHakM}aj~z~)eMrh0p(IwKG>0WmWWvuw{)XDxfecntt!YaL+# delta 93 zcmaDbUE;xXi47tGEEA*lKi@1Npux=;w%Jj7Iy+&fv9R=1{0h>k5ndWo0l1jNih%(6XGowe)<<1qlscOIVr diff --git a/include/version.h b/include/version.h index 414de6d..8549add 100644 --- a/include/version.h +++ b/include/version.h @@ -1,9 +1,9 @@ #ifndef BUILD_NUMBER - #define BUILD_NUMBER 58 + #define BUILD_NUMBER 60 #endif #ifndef VERSION - #define VERSION "v0.1.58 - 2023-11-28 20:05:50.363623" + #define VERSION "v0.1.60 - 2023-11-28 20:34:19.363925" #endif #ifndef VERSION_SHORT - #define VERSION_SHORT "v0.1.58" + #define VERSION_SHORT "v0.1.60" #endif diff --git a/src/myDisplay.cpp b/src/myDisplay.cpp index 083cd8a..2d3ea41 100644 --- a/src/myDisplay.cpp +++ b/src/myDisplay.cpp @@ -146,7 +146,7 @@ void showOutsideNumberSingle(uint8_t number, DISPLAY_POSITION pos, bool show = f for (size_t tmp_x = 0; tmp_x < FONT_WIDTH; tmp_x++) { uint8_t ledIndex = tmp_y * LED_WIDTH + tmp_x + (pos == POSITION_LEFT ? 0 : FONT_WIDTH); - leds[ledIndex + SKIP_LEDS] = FONT_NUMBERS[number][tmp_y][tmp_x] ? (pos == POSITION_LEFT ? myPink : myRed) : CRGB::Black; + leds[ledIndex + SKIP_LEDS] = FONT_NUMBERS[number][tmp_y][tmp_x] ? (pos == POSITION_LEFT ? myBlue : myRed) : CRGB::Black; } } if (show) { diff --git a/src/myOTA.cpp b/src/myOTA.cpp index 8601ea3..f10c3d9 100644 --- a/src/myOTA.cpp +++ b/src/myOTA.cpp @@ -79,10 +79,7 @@ bool isOTARemoteNeeded() { Serial.println("RU version check: Started"); if (httpClient.begin(wifiClient, url)) { - // start connection and send HTTP header int httpCode = httpClient.GET(); - - // httpCode will be negative on error if (httpCode == HTTP_CODE_OK) { String payload = httpClient.getString(); Serial.println("RU version check: Response below -"); diff --git a/versioning.html b/versioning.html index 4800c7d..2b82dfe 100644 --- a/versioning.html +++ b/versioning.html @@ -1 +1 @@ -58 \ No newline at end of file +60 \ No newline at end of file