Created
July 29, 2020 18:46
-
-
Save alexastrum/c96e73d9db7c9c39e778a3c100d515b5 to your computer and use it in GitHub Desktop.
This file contains 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 displaySuspend(String msg) { | |
displayText("Execution suspended: " + msg); | |
digitalWrite(LED_BUILTIN, HIGH); // Turn on LED. | |
while (true) { | |
// Stop execution. | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment