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/af57df84a5168564dfe5d846e8aac957 to your computer and use it in GitHub Desktop.
Save li2hub/af57df84a5168564dfe5d846e8aac957 to your computer and use it in GitHub Desktop.
void setup() {
pinMode(D7,INPUT);
pinMode(D5,OUTPUT);
}
void loop() {
if(digitalRead(D7)==HIGH)
digitalWrite(D5,HIGH);
else
digitalWrite(D5,LOW);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment