Skip to content

Instantly share code, notes, and snippets.

@alistairjevans
Created May 11, 2019 09:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alistairjevans/da7b8d22cb514717d91560e323f429dd to your computer and use it in GitHub Desktop.
Save alistairjevans/da7b8d22cb514717d91560e323f429dd to your computer and use it in GitHub Desktop.
Anatomy of an Arduino App
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