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 / AliExpress
- LED ………………….. Amazon / Banggod / AliExpress
Disclosure: These are affiliate links. As an Amazon Associate I earn from qualifying purchases.
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)
Thanks for your tutorial , but is it okey to use the aurduino uno or just the mega aurduino????
Sure, you can use Arduino Uno.