Skip to content

Instantly share code, notes, and snippets.

@giljr
Created December 1, 2018 22:31
Show Gist options
  • Save giljr/074c043347ea28698fe8a88812d7adfa to your computer and use it in GitHub Desktop.
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
/*
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