Skip to content

Instantly share code, notes, and snippets.

@yemreeke
Last active November 15, 2020 18:05
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 yemreeke/c3a49632cfe3e51c59200b7f43d885a2 to your computer and use it in GitHub Desktop.
Save yemreeke/c3a49632cfe3e51c59200b7f43d885a2 to your computer and use it in GitHub Desktop.
void setup() {
pinMode(9,OUTPUT);
}
void loop() {
digitalWrite(9,HIGH);
delay(100);
digitalWrite(9,LOW);
delay(100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment