Skip to content

Instantly share code, notes, and snippets.

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