Created
March 24, 2026 18:42
-
-
Save indefinit/c6f84eb9a368fb15e872c2300cd83419 to your computer and use it in GitHub Desktop.
Arduino delay() blocking example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void loop() { | |
| Serial.println("Hello!"); | |
| delay(1000); // Wait 1 second before looping again | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment