code cleanups (removed unused vars) and futher prepare for ota

This commit is contained in:
2019-11-10 16:14:46 +01:00
parent 4b571786ef
commit 7bb74a43b9
4 changed files with 20 additions and 13 deletions

View File

@@ -23,7 +23,7 @@ void setup() {
// If we run in to trouble, this can painlessly be removed and the resulting device name will just be longer
settings.name.remove(devlen+1, 6);
PRINTLN_SERIAL("device name generated");
PRINTLN_SERIAL("Device name: " + settings.name);
wifi_setup();
@@ -37,7 +37,7 @@ void setup() {
moon_setup();
#endif
// Start the cooperative scheduler loops
PRINTLN_SERIAL(devname + "done setting up, ready for main loop");
PRINTLN_SERIAL(settings.name + " done setting up, ready for main loop");
}
void loop() {