0% found this document useful (0 votes)
3 views5 pages

Project 02 Report

The document outlines a project on the Arduino Blink, aimed at teaching users the basics of Arduino microcontroller operations, including programming and digital output control. It details the materials used, provides sample code for turning an LED on and off, and includes a personal reflection on the learning experience. The project serves as an introductory exercise for novices in electronics and programming.

Uploaded by

yvvxypkd65
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)
3 views5 pages

Project 02 Report

The document outlines a project on the Arduino Blink, aimed at teaching users the basics of Arduino microcontroller operations, including programming and digital output control. It details the materials used, provides sample code for turning an LED on and off, and includes a personal reflection on the learning experience. The project serves as an introductory exercise for novices in electronics and programming.

Uploaded by

yvvxypkd65
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
You are on page 1/ 5

Florida International University

Project #2

Introduction to Arduino
EML 4804

Submitted by:
Manuel Caballero
ID#: 6272113
Date of submission:
05/19/2024

Summer, 2024
Introduction
The Arduino Blink project is a basic educational task meant to acquaint
users with the core operations of an Arduino microcontroller. This example
illustrates key programming topics, including pin configuration, digital output
control, and delay function usage, by turning an LED on and off. This project is a
great place for novices to start learning electronics and programming because it
teaches them how to modify physical components using simple code in a hands-on
way.

Materials used.

1. Arduino Uno Board


2. Bread Board
3. USB cable
4. A red LED
5. Resistor 220 Ohm
6. Laptop
7. 2 wires
Diagram
Code
void setup() {

// initialize digital pin LED_BUILTIN as an output.


pinMode(3, OUTPUT);
}

// the loop function runs over and over again forever


void loop() {
digitalWrite(3, HIGH); // turn the LED on (HIGH is the voltage level)
delay(500); // wait for half a second
digitalWrite(3, LOW); // turn the LED off by making the voltage LOW
delay(500); // wait for half a second
}

Picture
https://drive.google.com/file/d/1ZwK4F0JhuKU3JTGz_e3v7D0VfgrQixq9/
view?usp=sharing … visual representation.

Conclusion
I gained an understanding of the fundamentals of configuring and
programming an Arduino microcontroller, including managing digital outputs and
pin configuration, by re-creating the Arduino Blink project. Even though the
assignment was rather simple, I had a little of trouble comprehending the Arduino
Uno's pin layout. I was able to determine which pins were meant for the integrated
LED and other components by carefully examining the pin layout and consulting
the official Arduino documentation. My comprehension of fundamental electronics
and programming has improved as a result of this practical experience, giving me a
strong basis for future projects with more complicated components.

References
1. https://fiu.instructure.com/courses/197720/pages/module-2-%7C-pre-
record-lecture?module_item_id=8609354
2. https://www.geeksforgeeks.org/led-blinking-using-arduino/

You might also like