Skip to content

Instantly share code, notes, and snippets.

@detik19
Created February 1, 2019 12:48
Show Gist options
  • Save detik19/9228c78c6e220b0f13bb630cbe6cbcb5 to your computer and use it in GitHub Desktop.
Save detik19/9228c78c6e220b0f13bb630cbe6cbcb5 to your computer and use it in GitHub Desktop.
int LED_BUILTIN = 2;
void setup() {
pinMode (LED_BUILTIN, OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH);
delay(1000);
digitalWrite(LED_BUILTIN, LOW);
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment