Change some messages

This commit is contained in:
Carsten Schmiemann 2022-08-02 22:40:32 +02:00
parent 0e8f8324bc
commit 34bff528b6
1 changed files with 3 additions and 4 deletions

View File

@ -76,11 +76,10 @@ void setup() {
#endif
delay(500);
logPrintlnI("LoRa APRS Tracker by OE5BPA (Peter Buchegger)");
logPrintlnI("Version: " VERSION);
logPrintlnI("LoRa APRS Tracker booting...");
setup_display();
show_display("OE5BPA", "LoRa APRS Tracker", "by Peter Buchegger", "Version: " VERSION, 2000);
show_display("LoRa APRS Tracker", "is booting", "please wait", 3000);
load_config();
setup_gps();
@ -106,7 +105,7 @@ void setup() {
userButton.attachDoubleClick(toggle_display);
logPrintlnI("Smart Beacon is " + getSmartBeaconState());
show_display("INFO", "Smart Beacon is " + getSmartBeaconState(), 1000);
show_display("INFO", "Smart Beacon is " + getSmartBeaconState(), 2000);
logPrintlnI("setup done...");
delay(500);
}