Created
May 11, 2019 09:04
-
-
Save alistairjevans/da7b8d22cb514717d91560e323f429dd to your computer and use it in GitHub Desktop.
Anatomy of an Arduino App
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 setup() | |
{ | |
// Do your setup here, | |
// configure your board, and so on. | |
} | |
void loop() | |
{ | |
// Called continuously. This is where you | |
// will do the bulk of your work. | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment