Arduino Tutorial 01: Getting Started

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


Disclosure: These are affiliate links. As an Amazon Associate I earn from qualifying purchases.Getting Started Photo 01

Source Code


int led =13;

void setup() {
pinMode(led, OUTPUT);
}

void loop() {
digitalWrite(led, HIGH);
delay(1000);
digitalWrite(led, LOW);
delay(1000);
}Code language: Arduino (arduino)

2 thoughts on “Arduino Tutorial 01: Getting Started”

Leave a Comment