This commit is contained in:
2026-05-22 21:52:50 +03:00
commit be7c60e4dd
1854 changed files with 583428 additions and 0 deletions
@@ -0,0 +1,13 @@
// macro SET_TIME_BEFORE_STARTING_SKETCH_MS(time_ms) can set a time in milliseconds
// before the sketch would start its execution. It gives the user time to open the Serial Monitor
// This will force the Sketch execution to wait for 5 seconds before starting it execution
// setup() will be executed only after this time
SET_TIME_BEFORE_STARTING_SKETCH_MS(5000);
void setup() {
Serial.begin(115200);
Serial.println("After 5 seconds... this message will be seen in the Serial Monitor.");
}
void loop() {}