V2.20 230331 OV-Alzenau in RST Karlstadt geändert (Name beim Booten)

This commit is contained in:
2023-04-01 13:19:25 +02:00
parent f521606f74
commit a0d2e03058

View File

@@ -1,4 +1,4 @@
#define VERSION (char *) "V2.19" #define VERSION (char *) "V2.20"
/* /*
V2.12 230205 neues SDK 8266; AP+Wifi Client; lokaleip eingebaut V2.12 230205 neues SDK 8266; AP+Wifi Client; lokaleip eingebaut
@@ -9,6 +9,7 @@
V2.17 230227 alle unbekannten Seiten Leiten auf die IP um V2.17 230227 alle unbekannten Seiten Leiten auf die IP um
V2.18 230313 Sommerzeitprüfung auch offline eingebaut; Auf doRTCSecond umgebaut; V2.18 230313 Sommerzeitprüfung auch offline eingebaut; Auf doRTCSecond umgebaut;
V2.19 230327 Sommerzeit stellt die Uhr jetzt auch vor (nicht zurück); neues SDK V2.19 230327 Sommerzeit stellt die Uhr jetzt auch vor (nicht zurück); neues SDK
V2.20 230331 OV-Alzenau in RST Karlstadt geändert (Name beim Booten)
*/ */
// Pins for LED MATRIX // Pins for LED MATRIX
@@ -154,6 +155,24 @@ void doClearLEDs(boolean incFirstLine = false){
display.fillScreen(0); display.fillScreen(0);
} }
void showRST(void){
uint8_t zeile=20;
uint8_t spalte=1;
spalte += Out5x7Char('R',spalte,zeile,255,255,255)+1;
spalte += Out5x7Char('S',spalte,zeile,255,255,255)+1;
spalte += Out5x7Char('t',spalte,zeile,255,255,255)+1;
spalte += Out5x7Char(' ',spalte,zeile,255,255,255)+1;
spalte += Out5x7Char('K',spalte,zeile,255,255,255)+1;
spalte += Out5x7Char('a',spalte,zeile,255,255,255)+1;
spalte += Out5x7Char('r',spalte,zeile,255,255,255)+1;
spalte += Out5x7Char('l',spalte,zeile,255,255,255)+1;
spalte += Out5x7Char('s',spalte,zeile,255,255,255)+1;
spalte += Out5x7Char('t',spalte,zeile,255,255,255)+1;
spalte += Out5x7Char('a',spalte,zeile,255,255,255)+1;
spalte += Out5x7Char('d',spalte,zeile,255,255,255)+1;
spalte += Out5x7Char('t',spalte,zeile,255,255,255)+1;
}
void showOVALZ(void){ void showOVALZ(void){
uint8_t zeile=20; uint8_t zeile=20;
uint8_t spalte=8; uint8_t spalte=8;
@@ -681,7 +700,8 @@ void setup() {
display.setFastUpdate(true); display.setFastUpdate(true);
doClearLEDs(true); doClearLEDs(true);
showOVALZ(); //showOVALZ();
showRST();
showNTOOLS(); showNTOOLS();
display_update_enable(true); display_update_enable(true);