mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-22 23:56:13 +01:00
feat: OTA update display messages
This commit is contained in:
parent
c0becf9f78
commit
c8e3488bee
|
@ -172,6 +172,22 @@ void loop()
|
|||
TrackManager::setProgPower(POWERMODE::OFF);
|
||||
// Broadcast power status
|
||||
CommandDistributor::broadcastPower();
|
||||
DISPLAY_START (
|
||||
LCD(0,F("OTA update"));
|
||||
LCD(1,F("In progress..."));
|
||||
);
|
||||
});
|
||||
ArduinoOTA.onEnd([]() {
|
||||
DISPLAY_START (
|
||||
LCD(0,F("OTA update"));
|
||||
LCD(1,F("Complete"));
|
||||
);
|
||||
});
|
||||
ArduinoOTA.onError([](ota_error_t error) {
|
||||
DISPLAY_START (
|
||||
LCD(0,F("OTA update"));
|
||||
LCD(1,F("Error: %d"), error);
|
||||
);
|
||||
});
|
||||
// Set OTA password if defined
|
||||
#ifdef OTA_AUTH
|
||||
|
|
Loading…
Reference in New Issue
Block a user