Created
December 1, 2018 22:31
-
-
Save giljr/074c043347ea28698fe8a88812d7adfa to your computer and use it in GitHub Desktop.
Arduino UNO — Quick Intro A Workshop in BSB with the Kids :) https://medium.com/kidstronics/arduino-uno-quick-intro-94c7c682740a
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
/* | |
Kids-Serie#10 | |
Project : Arduino Start Up | |
Ino File: _10_Blinking_LED_01.ino | |
*/ | |
void setup() { | |
// put your setup code here, to run once: | |
pinMode(3, OUTPUT); | |
} | |
void loop() { | |
// put your main code here, to run repeatedly: | |
digitalWrite(3, HIGH); | |
delay(500); | |
digitalWrite(3, LOW); | |
delay(500); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment