Skip to content

Instantly share code, notes, and snippets.

@mikebranstein
Created September 8, 2017 15:37
Show Gist options
  • Save mikebranstein/e6305e5b6cc3cfb88f0669a55da442cd to your computer and use it in GitHub Desktop.
Save mikebranstein/e6305e5b6cc3cfb88f0669a55da442cd to your computer and use it in GitHub Desktop.
Particle basic app
void setup() {
// configuration code goes here
}
void loop() {
// this code runs continually in a loop
// add your execution logic here
// delay pauses execution for 1000 milliseconds
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment