0% found this document useful (0 votes)
53 views2 pages

Arduino Getting Started Tutorial

This document is the first tutorial in an Arduino series, focusing on getting started with Arduino projects. It includes a step-by-step video tutorial, a list of required components, and source code for a simple LED blinking example. The tutorial aims to guide users from basic to advanced Arduino skills.

Uploaded by

Gitfirul Aziz
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
53 views2 pages

Arduino Getting Started Tutorial

This document is the first tutorial in an Arduino series, focusing on getting started with Arduino projects. It includes a step-by-step video tutorial, a list of required components, and source code for a simple LED blinking example. The tutorial aims to guide users from basic to advanced Arduino skills.

Uploaded by

Gitfirul Aziz
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

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. }

You might also like