Merge pull request #633 from MCelliotG/main

Fix for Whiteout theme and etc
This commit is contained in:
Sjef Verhoeven PE5PVB
2024-08-08 13:53:02 +02:00
committed by GitHub
4 changed files with 19 additions and 19 deletions

View File

@@ -122,13 +122,13 @@
//MAIN COLORS /* RGB 565 CODES */
#define Black 0x0000 /* 0, 0, 0 */
#define Blue 0x001F /* 0, 0, 31 */
#define Cabbage 0x07F6 /* 0, 63, 22 */
#define Cabbage 0x06D0 /* 0, 54, 16 */
#define Coral 0xFBEF /* 31, 31, 15 */
#define Crimson 0xF8C3 /* 31, 6, 3 */
#define Cyan 0x0F3F /* 1, 57, 31 */
#define Cherry 0xF00A /* 30, 0, 10 */
#define Grey 0x7BEF /* 15, 31, 15 */
#define Darkgrey 0x39A7 /* 7, 13, 7 */
#define Darkgrey 0x1082 /* 2, 4, 2 */
#define Deepsky 0x051F /* 0, 40, 31 */
#define Green 0x07E0 /* 0, 63, 0 */
#define Indigo 0x881F /* 17, 0, 31 */

View File

@@ -235,7 +235,7 @@ void doTheme() { // Use this to put your own colors in: http://www.barth-dev.de
case 7: // Whiteout theme
PrimaryColor = Black;
PrimaryColorSmooth = White;
SecondaryColor = Grey;
SecondaryColor = Darkgrey;
SecondaryColorSmooth = White;
FrameColor = Darkgrey;
GreyoutColor = PureGrey;

View File

@@ -1407,14 +1407,14 @@ static const char* const myLanguage[18][281] PROGMEM = {
"Αρχικό κανάλι μνήμης", // 266
"Τελικό κανάλι μνήμης", // 267
"Αποθήκευση μόνο\nμε RDS", // 268
"Εκκίνηση αυτόματης μνήμης", // 269
"Εκκίνηση\nαυτόματης μνήμης", // 269
"Αυτόματη μνήμη", // 270
"ID λίστας σταθμών", // 271
"Βρέθηκαν", // 272
"Ματαίωση! Τα κανάλια\nμνήμης εξαντλήθηκαν", // 273
"Ματαίωση! Πιέση\nπλήκτρου χρήστη", // 274
"Η ανίχνευση ολοκληρώθηκε\nχωρίς σφάλματα", // 275
"Εκκαθάριση καναλιών μνήμης", // 276
"Εκκαθάριση\nκαναλιών μνήμης", // 276
"έγινε εκκαθάριση", // 277
"Αποφυγή διπλού PI", // 278
"Εύρος", // 279
@@ -4804,7 +4804,7 @@ static const char* const myLanguage[18][281] PROGMEM = {
"Iniciar canal\nde memoria", // 266
"Detener canal\nde memoria", // 267
"Solo almacenar\ncon RDS", // 268
"Iniciar memoria automática", // 269
"Iniciar memoria\nautomática", // 269
"Memoria automática", // 270
"ID de la lista\nde estaciones", // 271
"Encontrado", // 272
@@ -5085,7 +5085,7 @@ static const char* const myLanguage[18][281] PROGMEM = {
"Mostrar PS longo", // 263
"Iniciar frequência", // 264
"Parar frequência", // 265
"Iniciar canal de memória", // 266
"Iniciar canal\nde memória", // 266
"Parar canal de memória", // 267
"Somente armazenar\ncom RDS", // 268
"Iniciar memória automática", // 269

View File

@@ -368,9 +368,9 @@ void readRds() {
if (radio.rds.hasCT) {
if (advancedRDS) {
tftPrint(1, rds_clock, 205, 109, RDSDropoutColor, RDSDropoutColorSmooth, 16);
tftPrint(1, rds_clock, 208, 109, RDSDropoutColor, RDSDropoutColorSmooth, 16);
} else {
tftPrint(1, rds_clock, 205, 163, RDSDropoutColor, RDSDropoutColorSmooth, 16);
tftPrint(1, rds_clock, 208, 163, RDSDropoutColor, RDSDropoutColorSmooth, 16);
}
}
dropout = true;
@@ -425,9 +425,9 @@ void readRds() {
if (radio.rds.hasCT) {
if (advancedRDS) {
tftPrint(1, rds_clock, 205, 109, RDSColor, RDSColorSmooth, 16);
tftPrint(1, rds_clock, 208, 109, RDSColor, RDSColorSmooth, 16);
} else {
tftPrint(1, rds_clock, 205, 163, RDSColor, RDSColorSmooth, 16);
tftPrint(1, rds_clock, 208, 163, RDSColor, RDSColorSmooth, 16);
}
}
dropout = false;
@@ -751,24 +751,24 @@ void showCT() {
rtcset = true;
rtc.setTime(0, radio.rds.minute, radio.rds.hour, radio.rds.day, radio.rds.month, radio.rds.year);
if (advancedRDS) {
tftReplace(1, rds_clockold, rds_clock, 205, 109, RDSColor, RDSColorSmooth, BackgroundColor, 16);
tftReplace(1, rds_clockold, rds_clock, 208, 109, RDSColor, RDSColorSmooth, BackgroundColor, 16);
} else {
tftReplace(1, rds_clockold, rds_clock, 205, 163, RDSColor, RDSColorSmooth, BackgroundColor, 16);
tftReplace(1, rds_clockold, rds_clock, 208, 163, RDSColor, RDSColorSmooth, BackgroundColor, 16);
}
} else {
if (rtcset) {
if (advancedRDS) {
tftReplace(1, rds_clockold, rds_clock, 205, 109, RDSDropoutColor, RDSDropoutColorSmooth, BackgroundColor, 16);
tftReplace(1, rds_clockold, rds_clock, 208, 109, RDSDropoutColor, RDSDropoutColorSmooth, BackgroundColor, 16);
} else {
tftReplace(1, rds_clockold, rds_clock, 205, 163, RDSDropoutColor, RDSDropoutColorSmooth, BackgroundColor, 16);
tftReplace(1, rds_clockold, rds_clock, 208, 163, RDSDropoutColor, RDSDropoutColorSmooth, BackgroundColor, 16);
}
} else {
if (advancedRDS) {
tftPrint(1, rds_clockold, 205, 109, BackgroundColor, BackgroundColor, 16);
tftPrint(1, rds_clock, 205, 109, BackgroundColor, BackgroundColor, 16);
tftPrint(1, rds_clockold, 208, 109, BackgroundColor, BackgroundColor, 16);
tftPrint(1, rds_clock, 208, 109, BackgroundColor, BackgroundColor, 16);
} else {
tftPrint(1, rds_clockold, 205, 163, BackgroundColor, BackgroundColor, 16);
tftPrint(1, rds_clock, 205, 163, BackgroundColor, BackgroundColor, 16);
tftPrint(1, rds_clockold, 208, 163, BackgroundColor, BackgroundColor, 16);
tftPrint(1, rds_clock, 208, 163, BackgroundColor, BackgroundColor, 16);
}
}
}