Skip to content

Instantly share code, notes, and snippets.

@li2hub
Created September 28, 2018 04:54
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 li2hub/5d99d39a02e62d781602d70680d8a89a to your computer and use it in GitHub Desktop.
Save li2hub/5d99d39a02e62d781602d70680d8a89a to your computer and use it in GitHub Desktop.
int out=0;
void setup() {
pinMode(D7,INPUT);
pinMode(D5,OUTPUT);
}
void loop() {
if(digitalRead(D7)==HIGH)
out=!out;
digitalWrite(D5,out);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment