Arduino
Arduino
Arduino
Yarelis D. Acevedo
Arianna H. Colón
Tiahra N. Avilés
1
AGENDA 2
What is Arduino?
1 What is an Arduino? Why Arduino? How can I
use it and implement it on the lab?
Arduino Software
2 How Arduinos are programmed
Hands On
4 Using Tinkercad simulator
What is a
microcontroller
To answer this enter to menti.com
Code: 5829 2707
3
What is a microcontroller? 4
What is Arduino?
What is an Arduino? What is the purpose? How
can I use it and implement it on the lab?
6
A brief story. The Arduino project began in
7
Arduino Microcontroller 8
● Interactive Installations
● Rapid Prototyping
9
What can I do? 10
Sensors Actuators
● Push buttons, touchpads, ● Lights, LED’s
tilt switches ● Motors
● Variable resistors (Sliders, ● Speakers
Volume knobs) ● Displays (LCD’s)
● Photoresistors (sensing
light)
● Thermistors (temperature)
● Ultrasound (proximity
range finder)
Types of Arduinos 11
What is the
difference
between them?
12
Types of Arduino 13
Arduino Uno 16Mhz ATmega328 2KB SRAM, 32KB flash 14 6 input, 0 output
USB port
In circuit serial
programming
ATMEL
Microcontroller
Power
input
The Arduino can input and output analog signals as well as digital signals.
An analog signal is one that can take on any number of values, unlike a digital
signal which has only two values: HIGH and LOW.
We will talk
about this later!
How Arduino is programmed? 16
Using a software
called Arduino IDE
02
Arduino Software
How Arduinos are programmed
17
Arduino Software (IDE) 18
companyname.com
Arduino Language 19
● Simplified C/C++
● Based on the wiring project
○ http://wiring.org.co
● Peripheral libraries
○ LCD, sensors, 12C, ect.
Useful functions 20
setup()
Initialize
setup() - run once at the
beginning
set pins
digitalWrite(ledPin, HIGH);
delay(5000);
loop() digitalWrite(ledPin, LOW);
delay(5000);
27
Verify Search
Upload
Opens
Save
New
sketch
03
How to get
started?
28
If you have the
board
29
How to get started? 30
● Arduino board
○ USB cable
○ DC power supplies
● Download the Arduino’s software (Arduino
IDE)
○ Read carefully
■ Instruccions to install and setup the
Arduino board with the computer and
software
○ Download the Arduino IDE software
■ http://www.arduino.cc
● Plug it in!
Plug in it into the computer 31
Online
32
33
Make an
account in It’s free!
tinkercad
35
36
Scroll down
until you find
the Arduino
Uno
37
Connect the
resistor to the
GND (Ground)
https://create.ardui
no.cc/projecthub
46
04
Hands On
47
Challenge!! 48
Scrolling LED