Skip to content

Instantly share code, notes, and snippets.

@yamori813
Created July 13, 2018 06:31
Show Gist options
  • Save yamori813/c6f9c6d9660d391cdd7c5734b2fd92b9 to your computer and use it in GitHub Desktop.
Save yamori813/c6f9c6d9660d391cdd7c5734b2fd92b9 to your computer and use it in GitHub Desktop.
void setup() {
pinMode(9, OUTPUT);
}
void loop() {
digitalWrite(9, HIGH); // set the LED on
delay(1000); // wait for a second
digitalWrite(9, LOW); // set the LED off
delay(1000); // wait for a second
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment