Skip to content

Commit 4b6c676

Browse files
committed
text changes
1 parent 0237cc1 commit 4b6c676

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/emsesp.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -1100,11 +1100,11 @@ void EMSESP::start() {
11001100
}
11011101
#endif
11021102

1103-
esp8266React.begin(); // loads system settings (wifi, mqtt, etc)
1103+
esp8266React.begin(); // loads system settings (network, mqtt, etc)
11041104

1105-
system_.check_upgrade(); // do any upgrades
1105+
system_.check_upgrade(); // do any system upgrades
11061106

1107-
// Load our library of known devices into stack mem. Names are stored in Flash memory (take about 960bytes)
1107+
// Load our library of known devices into stack mem. Names are stored in Flash memory (takes up about 1kb)
11081108
device_library_ = {
11091109
#include "device_library.h"
11101110
};
@@ -1114,7 +1114,7 @@ void EMSESP::start() {
11141114
webSettingsService.begin(); // load EMS-ESP specific settings, like GPIO configurations
11151115

11161116
mqtt_.start(); // mqtt init
1117-
system_.start(heap_start); // starts syslog, uart, sets version, initializes LED. Requires pre-loaded settings.
1117+
system_.start(heap_start); // starts syslog, uart, sets version, initializes LED
11181118
shower_.start(); // initialize shower timer and shower alert
11191119
dallassensor_.start(); // dallas external sensors
11201120
webServer.begin(); // start web server

0 commit comments

Comments
 (0)