Skip to content

Instantly share code, notes, and snippets.

@lazytomatolab
Created December 7, 2016 08:31
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 lazytomatolab/ee8e0e5eafeb73bdbc5a50710ed7235a to your computer and use it in GitHub Desktop.
Save lazytomatolab/ee8e0e5eafeb73bdbc5a50710ed7235a to your computer and use it in GitHub Desktop.
【Arduino SpeedUp】快速上手 Class 6 - LED 與電阻的必學之術!更多資訊請造訪:http://www.lazytomatolab.com
void setup() {
pinMode(7, OUTPUT);
}
void loop() {
digitalWrite(7, HIGH);
delay(1000);
digitalWrite(7, LOW);
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment