File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,14 @@ void addWidgets() {
46
46
void setup () {
47
47
// Initialize global resources
48
48
initializeGlobalResources ();
49
+
50
+ // Add a delay to allow the serial interface to initialize
51
+ delay (4000 );
52
+ // Clear the serial buffer of any garbage
53
+ while (Serial.available () > 0 ) {
54
+ Serial.read ();
55
+ }
56
+
49
57
Serial.begin (115200 );
50
58
Log.begin (LOG_LEVEL, &Serial);
51
59
Log.noticeln (" Starting up..." );
Original file line number Diff line number Diff line change @@ -70,6 +70,9 @@ lib_deps =
70
70
tzapu/WiFiManager@^2.0.17
71
71
thijse/ArduinoLog@^1.1.1
72
72
monitor_speed = 115200
73
+ monitor_filters =
74
+ send_on_enter
75
+ default
73
76
extra_scripts =
74
77
; Get git branch/commit info
75
78
pre:scripts/generate_git_info.py
You can’t perform that action at this time.
0 commit comments