Skip to content

Instantly share code, notes, and snippets.

@giljr
Created December 16, 2018 15:34
Show Gist options
  • Save giljr/b1ef48185af015629783a33f955fce1f to your computer and use it in GitHub Desktop.
Save giljr/b1ef48185af015629783a33f955fce1f to your computer and use it in GitHub Desktop.
/*
Ardu-Serie#66
Project : Digispark - Easy Installations Procedures
Ino File: _66_DigiSpark_Blinking_LED_01.ino
*/
void setup() {
pinMode(1, OUTPUT);
}
void loop() {
digitalWrite(1, HIGH); // Turn the LED on
delay(250);
digitalWrite(1, LOW); // Turn the LED off
delay(250);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment