Skip to content

Instantly share code, notes, and snippets.

@prasertsakd
Created January 8, 2017 16:18
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 prasertsakd/6a5a85af83b387ca01247368a693f32c to your computer and use it in GitHub Desktop.
Save prasertsakd/6a5a85af83b387ca01247368a693f32c to your computer and use it in GitHub Desktop.
#include "Arduino.h"
#define 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