Change to blue font

This commit is contained in:
2023-11-28 20:34:32 +05:30
parent 339a230aa2
commit 3533c47e4a
5 changed files with 5 additions and 8 deletions
Binary file not shown.
+3 -3
View File
@@ -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
+1 -1
View File
@@ -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) {
-3
View File
@@ -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 -");
+1 -1
View File
@@ -1 +1 @@
58
60