Created
December 16, 2018 15:34
-
-
Save giljr/b1ef48185af015629783a33f955fce1f to your computer and use it in GitHub Desktop.
Digispark — Easy Installations Procedures https://medium.com/@J.3/digispark-easy-installations-procedures-cd0ced59a0a4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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