SlideShare a Scribd company logo
1 of 25
Prepared by: Mr. Jhon Bryan J. Cantil, LPT
PinWiring to Arduino Uno
SDA------------------------Digital 10
SCK------------------------Digital 13
MOSI----------------------Digital 11
MISO----------------------Digital 12
IRQ------------------------unconnected
GND-----------------------GND
RST------------------------Digital 9
3.3V------------------------3.3V (DO NOT CONNECT TO 5V)
Tone Melody
The project will use a piezo
buzzer/speaker to play a little
melody.
Parts Needed
(1) Arduino Uno
(1) USB A-to-B Cable
(1) Breadboard – Half Size
(1) Piezo Buzzer/Speaker
(2) Jumper Wires
2
3
4
1
PUSH BUTTON
5
(1) USB A-to-B Cable
PARTS NEEDED
Using a push button switch, you will be able to turn
on and off an LED.
(1) Arduino Uno
(1) Breadboard – Half Size
(1) LED 5mm
(1) 220 Ω Resistor
7
8
6 (1) 10K Ω Resistor
(1) Push Button Switch
(6) Jumper Wires
Multiple 10 LEDs
PARTS NEEDED
(1) USB A-to-B Cable
(1) Breadboard – Half Size
(10) LED 5mm
(10) 330 Ω Resistor
(1) Arduino Uno
(10) Jumper Wires
This project will use 8 pins on the Arduino board to blink 8 LEDs at the same time.
(1) Arduino Uno
(1) USB A-to-B Cable
(1) LED 5mm
(1) 220 Ω Resistor
Parts Needed
T E S T
A R D U I N O
The first project is one of the most basic and simple circuits you
can create with Arduino. This project will test your Arduino by
blinking an LED that is connected directly to the board.
1. Twist a 220 Ω resistor to the short leg (-)
of the LED.
2. Push the long leg of the LED into the
ground (GND) pin on the board.
3. Push the resistor leg that’s connected to
the LED into the #13 pin.
(1) Arduino Uno
(1) USB A-to-B Cable
(1) Breadboard – Half Size
(1) LED 5mm
(1) 220 Ω Resistor
(2) Jumper Wires
Parts Needed
B L I N K I N G
L E D
This project is identical to project #1
except that we will be building it on a
breadboard. Once complete, the LED
should turn on for a second and then off
for a second in a loop.
Photoresistor
A photoresistor changes
the resistance a circuit gets
based on the amount of
light that hits the sensor. In
this project, the brightness
of the LED will increase
and decrease based on the
amount of light present.
PARTS NEEDED
(1) Arduino Uno
(1) USB A-to-B Cable
(1) Breadboard – Half Size
(1) LED 5mm
(1) 330 Ω Resistor
(1) 10K Ω Resistor
(1) Photoresistor
(6) Jumper Wires
SCROLLING LED
This project will blink 6 LEDs, one at a time, in a back and forth formation. This
type of circuit was made famous by the show Knight Rider which featured a car
with looping LEDs.
(1) USB A-to-B Cable
01
02
(1) Breadboard – Half Size
(6) LED 5mm
03
04
(6) 220 Ω Resistor
05
(1) Arduino Uno
06 (7) Jumper Wires
PARTS NEEDED
Multiple LEDs
PARTS NEEDED
(1) USB A-to-B Cable
(1) Breadboard – Half Size
(8) LED 5mm
(9) 330 Ω Resistor
(1) Arduino Uno
(9) Jumper Wires
This project will use 8 pins on the Arduino board to blink 8 LEDs at the same time.
FADE A LED
By using a PWM pin on the Arduino, you will be able to increase and
decrease the intensity of brightness of an LED.
(1) USB A-to-B Cable
01
02
(1) Breadboard – Half Size
(1) LED 5mm
03
04
(1) 220 Ω Resistor
05
(1) Arduino Uno
06 (2) Jumper Wires
PARTS NEEDED
Servo & Potentiometer
GND <---> GND
VCC <---> 5V
SDA <---> A4
SCL <---> A5
RGB LED & LCD Screen
RGB LED
This project will be using an RGB LED to scroll through a variety of colors. RGB stands for Red,
Green and Blue and this LED has the ability to create nearly unlimited color combinations.
(1) USB A-to-B Cable
(1) Breadboard – Half Size
(1) RGB LED
(1) Arduino Uno
(3) 330 Ω Resistor
(5) Jumper Wires
BAR GRAPH
Using a potentiometer, you can control a series of LEDs in a row. Turning the
potentiometer knob will turn on or off more of the LEDs.
PARTS NEEDED
(1) USB A-to-B Cable
(1) Breadboard – Half Size
(10) LED 5mm
(10) 220 Ω Resistor
(1) Arduino Uno
(11) Jumper Wires
(1) Potentiometer – Rotary
2
3
4
1
POTENTIOMETER
5
(1) USB A-to-B Cable
PARTS NEEDED
Using a potentiometer, you will be able to control the
resistance of an LED. Turning the knob will increase and
decrease the frequency the LED blinks.
(1) Arduino Uno
(1) Breadboard – Half Size
(1) LED 5mm
(1) 220 Ω Resistor
7
6 (1) Potentiometer (10k Trimpot)
(6) Jumper Wires
In this project, you will be able to sweep a servo back
and forth through its full range of motion.
SERVO
Parts Needed
 (1) Arduino Uno
 (1) USB A-to-B Cable
 (1) Breadboard – Half Size
 (1) Servo
 (6) Jumper Wires
LCD Screen
An LCD is a liquid crystal display that is able to display text on its screen. In this project, you should see the
words “hello,world!” displayed on the screen.
(1) USB A-to-B Cable
(1) Breadboard – Half Size
(1) Arduino Uno
(1) LCD Screen
(16) Jumper Wires
I2C Board of LCD Arduino
GND <---> GND
VCC <---> 5V
SDA <---> A4
SCL <---> A5
LCD
We must require to include two libraries ,in order to work the code attached .
Download the libraries from the attachment LCD library .
Basic functions we use in code
lcd.begin(16,2); //Defining 16 columns and 2 rows of lcd display
lcd.backlight(); //To Power ON /OFF the back light
lcd.setCursor(0,0); //Defining positon to write from first row,first column .
lcd.setCursor(0,1); //Defining positon to write from second row,first column .
lcd.print(" write here to print"); //You can write 16 Characters per line within
quotations.
lcd.clear(); //Clean the screen
Parts Needed
 (1) Arduino Uno
 (1) USB A-to-B Cable
 (1) Breadboard – Half Size
 (1) 7 Segment
 (9) Jumper Wires
 (2) 220 Ω Resistor
Parts Needed
 (1) Arduino Uno
 (1) USB A-to-B Cable
 (1) Breadboard – Half Size
 (1) 4 Digit 7 Segment
 (9) Jumper Wires
TEMPERATURE SENSOR
A temperature sensor
measures ambient
temperatures of the world
around it. In this project, we
will be displaying the
temperature in the serial
monitor of the Arduino IDE.
PARTS NEEDED
(1) Arduino Uno
(1) USB A-to-B Cable
(1) Breadboard – Half Size
(1) Temperature Sensor - TMP 36
(5) Jumper Wires
Using a switching transistor, we will be able to control a
DC motor. If everything is connected correctly, you
should see the motor spinning.
Motor
Parts Needed
(1) Arduino Uno
(1) USB A-to-B Cable
(1) Breadboard – Half Size
(1) DC Motor
(1) 330 Ω Resistor
(1) Diode 1N4148
(1) NPN Transistor
(6) Jumper Wires
Prepared by: Mr. Jhon Bryan J. Cantil, LPT

More Related Content

Similar to Arduino Projects.pptx

GS8208 led datasheet
GS8208 led datasheetGS8208 led datasheet
GS8208 led datasheetDaisy Xu
 
Arduino severinomanual2
Arduino severinomanual2Arduino severinomanual2
Arduino severinomanual2wircorp
 
Fire Fighting Robot
Fire Fighting RobotFire Fighting Robot
Fire Fighting RobotSaadullah74
 
Digital clock workshop
Digital clock workshopDigital clock workshop
Digital clock workshopKedarv
 
1396740 634706422070340000
1396740 6347064220703400001396740 634706422070340000
1396740 634706422070340000bnsprasad
 
CSEduino - Build your Arduino from scratch
CSEduino - Build your Arduino from scratchCSEduino - Build your Arduino from scratch
CSEduino - Build your Arduino from scratchJoao Alves
 
Arduino severinomanual2
Arduino severinomanual2Arduino severinomanual2
Arduino severinomanual2Muhammad Khan
 
OV7670 Camera interfacing-with-arduino-microcontroller
OV7670 Camera interfacing-with-arduino-microcontrollerOV7670 Camera interfacing-with-arduino-microcontroller
OV7670 Camera interfacing-with-arduino-microcontrollerSomnath Sharma
 
SKAD Electronics Training Manual.pdf
SKAD Electronics Training Manual.pdfSKAD Electronics Training Manual.pdf
SKAD Electronics Training Manual.pdfKadiriIbrahim2
 
Part-2: Mastering microcontroller with embedded driver development
Part-2: Mastering microcontroller with embedded driver developmentPart-2: Mastering microcontroller with embedded driver development
Part-2: Mastering microcontroller with embedded driver developmentFastBit Embedded Brain Academy
 
Mc module5 lcd_interface_ppt_msj
Mc module5 lcd_interface_ppt_msjMc module5 lcd_interface_ppt_msj
Mc module5 lcd_interface_ppt_msjmangala jolad
 
Z turn board
Z turn boardZ turn board
Z turn boardmyirtech
 
Arduino Severino Serial Board TPS-00759 www.onlineTPS.com
Arduino Severino Serial Board TPS-00759 www.onlineTPS.comArduino Severino Serial Board TPS-00759 www.onlineTPS.com
Arduino Severino Serial Board TPS-00759 www.onlineTPS.comTotal Project Solutions
 
Manual de serviço TV SHARP LED/LCD diversos modelos linha LC.
Manual de serviço TV SHARP LED/LCD diversos modelos linha LC.Manual de serviço TV SHARP LED/LCD diversos modelos linha LC.
Manual de serviço TV SHARP LED/LCD diversos modelos linha LC.Portal Eletrônica
 
Arduino Workshop (3).pptx
Arduino Workshop (3).pptxArduino Workshop (3).pptx
Arduino Workshop (3).pptxHebaEng
 
Power Over Fiber_PCBProject
Power Over Fiber_PCBProjectPower Over Fiber_PCBProject
Power Over Fiber_PCBProjectInbar Kinarty
 
A Report on Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
A Report on Bidirectional Visitor Counter using IR sensors and Arduino Uno R3A Report on Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
A Report on Bidirectional Visitor Counter using IR sensors and Arduino Uno R3Abhishekvb
 

Similar to Arduino Projects.pptx (20)

GS8208 led datasheet
GS8208 led datasheetGS8208 led datasheet
GS8208 led datasheet
 
Arduino severinomanual2
Arduino severinomanual2Arduino severinomanual2
Arduino severinomanual2
 
Fire Fighting Robot
Fire Fighting RobotFire Fighting Robot
Fire Fighting Robot
 
Digital clock workshop
Digital clock workshopDigital clock workshop
Digital clock workshop
 
1396740 634706422070340000
1396740 6347064220703400001396740 634706422070340000
1396740 634706422070340000
 
CSEduino - Build your Arduino from scratch
CSEduino - Build your Arduino from scratchCSEduino - Build your Arduino from scratch
CSEduino - Build your Arduino from scratch
 
Neno Project.docx
Neno Project.docxNeno Project.docx
Neno Project.docx
 
Smart Blind stick by using arduino uno and sensor
 Smart Blind stick  by using arduino  uno  and sensor Smart Blind stick  by using arduino  uno  and sensor
Smart Blind stick by using arduino uno and sensor
 
Arduino severinomanual2
Arduino severinomanual2Arduino severinomanual2
Arduino severinomanual2
 
water level edit.docx
water level edit.docxwater level edit.docx
water level edit.docx
 
OV7670 Camera interfacing-with-arduino-microcontroller
OV7670 Camera interfacing-with-arduino-microcontrollerOV7670 Camera interfacing-with-arduino-microcontroller
OV7670 Camera interfacing-with-arduino-microcontroller
 
SKAD Electronics Training Manual.pdf
SKAD Electronics Training Manual.pdfSKAD Electronics Training Manual.pdf
SKAD Electronics Training Manual.pdf
 
Part-2: Mastering microcontroller with embedded driver development
Part-2: Mastering microcontroller with embedded driver developmentPart-2: Mastering microcontroller with embedded driver development
Part-2: Mastering microcontroller with embedded driver development
 
Mc module5 lcd_interface_ppt_msj
Mc module5 lcd_interface_ppt_msjMc module5 lcd_interface_ppt_msj
Mc module5 lcd_interface_ppt_msj
 
Z turn board
Z turn boardZ turn board
Z turn board
 
Arduino Severino Serial Board TPS-00759 www.onlineTPS.com
Arduino Severino Serial Board TPS-00759 www.onlineTPS.comArduino Severino Serial Board TPS-00759 www.onlineTPS.com
Arduino Severino Serial Board TPS-00759 www.onlineTPS.com
 
Manual de serviço TV SHARP LED/LCD diversos modelos linha LC.
Manual de serviço TV SHARP LED/LCD diversos modelos linha LC.Manual de serviço TV SHARP LED/LCD diversos modelos linha LC.
Manual de serviço TV SHARP LED/LCD diversos modelos linha LC.
 
Arduino Workshop (3).pptx
Arduino Workshop (3).pptxArduino Workshop (3).pptx
Arduino Workshop (3).pptx
 
Power Over Fiber_PCBProject
Power Over Fiber_PCBProjectPower Over Fiber_PCBProject
Power Over Fiber_PCBProject
 
A Report on Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
A Report on Bidirectional Visitor Counter using IR sensors and Arduino Uno R3A Report on Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
A Report on Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
 

Recently uploaded

WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAndikSusilo4
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 

Recently uploaded (20)

WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & Application
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 

Arduino Projects.pptx

  • 1. Prepared by: Mr. Jhon Bryan J. Cantil, LPT
  • 2. PinWiring to Arduino Uno SDA------------------------Digital 10 SCK------------------------Digital 13 MOSI----------------------Digital 11 MISO----------------------Digital 12 IRQ------------------------unconnected GND-----------------------GND RST------------------------Digital 9 3.3V------------------------3.3V (DO NOT CONNECT TO 5V)
  • 3. Tone Melody The project will use a piezo buzzer/speaker to play a little melody. Parts Needed (1) Arduino Uno (1) USB A-to-B Cable (1) Breadboard – Half Size (1) Piezo Buzzer/Speaker (2) Jumper Wires
  • 4. 2 3 4 1 PUSH BUTTON 5 (1) USB A-to-B Cable PARTS NEEDED Using a push button switch, you will be able to turn on and off an LED. (1) Arduino Uno (1) Breadboard – Half Size (1) LED 5mm (1) 220 Ω Resistor 7 8 6 (1) 10K Ω Resistor (1) Push Button Switch (6) Jumper Wires
  • 5. Multiple 10 LEDs PARTS NEEDED (1) USB A-to-B Cable (1) Breadboard – Half Size (10) LED 5mm (10) 330 Ω Resistor (1) Arduino Uno (10) Jumper Wires This project will use 8 pins on the Arduino board to blink 8 LEDs at the same time.
  • 6. (1) Arduino Uno (1) USB A-to-B Cable (1) LED 5mm (1) 220 Ω Resistor Parts Needed T E S T A R D U I N O The first project is one of the most basic and simple circuits you can create with Arduino. This project will test your Arduino by blinking an LED that is connected directly to the board. 1. Twist a 220 Ω resistor to the short leg (-) of the LED. 2. Push the long leg of the LED into the ground (GND) pin on the board. 3. Push the resistor leg that’s connected to the LED into the #13 pin.
  • 7. (1) Arduino Uno (1) USB A-to-B Cable (1) Breadboard – Half Size (1) LED 5mm (1) 220 Ω Resistor (2) Jumper Wires Parts Needed B L I N K I N G L E D This project is identical to project #1 except that we will be building it on a breadboard. Once complete, the LED should turn on for a second and then off for a second in a loop.
  • 8. Photoresistor A photoresistor changes the resistance a circuit gets based on the amount of light that hits the sensor. In this project, the brightness of the LED will increase and decrease based on the amount of light present. PARTS NEEDED (1) Arduino Uno (1) USB A-to-B Cable (1) Breadboard – Half Size (1) LED 5mm (1) 330 Ω Resistor (1) 10K Ω Resistor (1) Photoresistor (6) Jumper Wires
  • 9. SCROLLING LED This project will blink 6 LEDs, one at a time, in a back and forth formation. This type of circuit was made famous by the show Knight Rider which featured a car with looping LEDs. (1) USB A-to-B Cable 01 02 (1) Breadboard – Half Size (6) LED 5mm 03 04 (6) 220 Ω Resistor 05 (1) Arduino Uno 06 (7) Jumper Wires PARTS NEEDED
  • 10. Multiple LEDs PARTS NEEDED (1) USB A-to-B Cable (1) Breadboard – Half Size (8) LED 5mm (9) 330 Ω Resistor (1) Arduino Uno (9) Jumper Wires This project will use 8 pins on the Arduino board to blink 8 LEDs at the same time.
  • 11. FADE A LED By using a PWM pin on the Arduino, you will be able to increase and decrease the intensity of brightness of an LED. (1) USB A-to-B Cable 01 02 (1) Breadboard – Half Size (1) LED 5mm 03 04 (1) 220 Ω Resistor 05 (1) Arduino Uno 06 (2) Jumper Wires PARTS NEEDED
  • 13. GND <---> GND VCC <---> 5V SDA <---> A4 SCL <---> A5 RGB LED & LCD Screen
  • 14. RGB LED This project will be using an RGB LED to scroll through a variety of colors. RGB stands for Red, Green and Blue and this LED has the ability to create nearly unlimited color combinations. (1) USB A-to-B Cable (1) Breadboard – Half Size (1) RGB LED (1) Arduino Uno (3) 330 Ω Resistor (5) Jumper Wires
  • 15. BAR GRAPH Using a potentiometer, you can control a series of LEDs in a row. Turning the potentiometer knob will turn on or off more of the LEDs. PARTS NEEDED (1) USB A-to-B Cable (1) Breadboard – Half Size (10) LED 5mm (10) 220 Ω Resistor (1) Arduino Uno (11) Jumper Wires (1) Potentiometer – Rotary
  • 16. 2 3 4 1 POTENTIOMETER 5 (1) USB A-to-B Cable PARTS NEEDED Using a potentiometer, you will be able to control the resistance of an LED. Turning the knob will increase and decrease the frequency the LED blinks. (1) Arduino Uno (1) Breadboard – Half Size (1) LED 5mm (1) 220 Ω Resistor 7 6 (1) Potentiometer (10k Trimpot) (6) Jumper Wires
  • 17. In this project, you will be able to sweep a servo back and forth through its full range of motion. SERVO Parts Needed  (1) Arduino Uno  (1) USB A-to-B Cable  (1) Breadboard – Half Size  (1) Servo  (6) Jumper Wires
  • 18. LCD Screen An LCD is a liquid crystal display that is able to display text on its screen. In this project, you should see the words “hello,world!” displayed on the screen. (1) USB A-to-B Cable (1) Breadboard – Half Size (1) Arduino Uno (1) LCD Screen (16) Jumper Wires
  • 19. I2C Board of LCD Arduino GND <---> GND VCC <---> 5V SDA <---> A4 SCL <---> A5
  • 20. LCD We must require to include two libraries ,in order to work the code attached . Download the libraries from the attachment LCD library . Basic functions we use in code lcd.begin(16,2); //Defining 16 columns and 2 rows of lcd display lcd.backlight(); //To Power ON /OFF the back light lcd.setCursor(0,0); //Defining positon to write from first row,first column . lcd.setCursor(0,1); //Defining positon to write from second row,first column . lcd.print(" write here to print"); //You can write 16 Characters per line within quotations. lcd.clear(); //Clean the screen
  • 21. Parts Needed  (1) Arduino Uno  (1) USB A-to-B Cable  (1) Breadboard – Half Size  (1) 7 Segment  (9) Jumper Wires  (2) 220 Ω Resistor
  • 22. Parts Needed  (1) Arduino Uno  (1) USB A-to-B Cable  (1) Breadboard – Half Size  (1) 4 Digit 7 Segment  (9) Jumper Wires
  • 23. TEMPERATURE SENSOR A temperature sensor measures ambient temperatures of the world around it. In this project, we will be displaying the temperature in the serial monitor of the Arduino IDE. PARTS NEEDED (1) Arduino Uno (1) USB A-to-B Cable (1) Breadboard – Half Size (1) Temperature Sensor - TMP 36 (5) Jumper Wires
  • 24. Using a switching transistor, we will be able to control a DC motor. If everything is connected correctly, you should see the motor spinning. Motor Parts Needed (1) Arduino Uno (1) USB A-to-B Cable (1) Breadboard – Half Size (1) DC Motor (1) 330 Ω Resistor (1) Diode 1N4148 (1) NPN Transistor (6) Jumper Wires
  • 25. Prepared by: Mr. Jhon Bryan J. Cantil, LPT