Skip to content

Instantly share code, notes, and snippets.

@takataka5614
Created January 26, 2020 02:41
Show Gist options
  • Save takataka5614/1681d133048a64898db36d674e152eb0 to your computer and use it in GitHub Desktop.
Save takataka5614/1681d133048a64898db36d674e152eb0 to your computer and use it in GitHub Desktop.
void setup() {
pinMode(11, OUTPUT);
}
void loop() {
digitalWrite(11, HIGH);
delay(1000);
digitalWrite(11, LOW);
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment