Created
September 8, 2017 15:37
-
-
Save mikebranstein/e6305e5b6cc3cfb88f0669a55da442cd to your computer and use it in GitHub Desktop.
Particle basic app
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 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