Skip to content

Instantly share code, notes, and snippets.

@lazytomatolab
Created December 29, 2016 16:23
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/9ed6933cb69f71b6a36ff3495504d25f to your computer and use it in GitHub Desktop.
Save lazytomatolab/9ed6933cb69f71b6a36ff3495504d25f to your computer and use it in GitHub Desktop.
【Arduino SpeedUp】快速上手 Class 7 - 程式宣告?取個綽號吧!更多資訊請造訪:http://www.lazytomatolab.com
int led = 7;
void setup() {
pinMode(led, OUTPUT);
}
void loop() {
digitalWrite(led, HIGH);
delay(1000);
digitalWrite(led, LOW);
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment