Arduino Tutorial 01: Getting Started
Dejan Arduino Tutorials 2
Welcome to the first Arduino Tutorial from our Arduino Tutorial Series. In this tutorial we will start with
Getting Started Tutorial and in the next tutorials we will go all the way to Advanced Tutorials.
This is a step by step video tutorial which is easy to be followed. Also, below the video you can find
the parts needed for this tutorial and the Source Code of the Example in the video.
Components needed for this Arduino Tutorial
Arduino Board ……. Amazon / Banggood
LED ………………….. Amazon / Banggod
Disclosure: These are affiliate links. As an Amazon Associate I earn from qualifying purchases.
Source Code
1. int led =13;
2.
3. void setup() {
4. pinMode(led, OUTPUT);
5. }
6.
7. void loop() {
8. digitalWrite(led, HIGH);
9. delay(1000);
10. digitalWrite(led, LOW);
11. delay(1000);
12. }