0% found this document useful (0 votes)
56 views18 pages

Arduino: Projects Design

This document describes three Arduino projects: 1) Blinking an LED, 2) Blinking an LED with a button, and 3) Interfacing an LCD display with Arduino. It lists the components needed for each project and provides an overview of the Proteus design, Arduino programming, and output for each project. The LCD interfacing project section further explains the LCD library commands and programming.

Uploaded by

Abdulkerim
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)
56 views18 pages

Arduino: Projects Design

This document describes three Arduino projects: 1) Blinking an LED, 2) Blinking an LED with a button, and 3) Interfacing an LCD display with Arduino. It lists the components needed for each project and provides an overview of the Proteus design, Arduino programming, and output for each project. The LCD interfacing project section further explains the LCD library commands and programming.

Uploaded by

Abdulkerim
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/ 18

Arduino

Projects Design
Proteus Schematic
Led blinking(hello world)
Project Requirements

 Arduino uno

 Led

 Jumper wires

 And resistor (70 ohm’s)


Proteus design
Led blinking
Arduino programming
Led blinking Output
Led blinking with button
controller
Project Requirements

 Arduino uno

 Led

 Jumper wires

 And resistor (70 ohm’s)

 Push Button
Proteus design
Arduino programming
Led blinking with Button
controller Output
Interfacing LCD with Arduino
uno
Project Requirements

 Arduino uno

 LCD(16X2)

 Jumper wires

 resistor (70 ohm’s)


Liquid Crystal Display(LCD)
Proteus design
for lcd display
Arduino programming for LCD

Commands for LCD

 First include Liquid crystal library

#include <LiquidCrystal.h>

 Then declare the lcd and their pins

 LiquidCrystal Lcd_name(Rs, E, D0…D6, D7);

Example LiquidCrystal lcd1(12,11,5,4,3,2);


Arduino programming for LCD
 Lcd_name.begin( column ,row); …. to
start LCD
Example lcd1.begin(16,2);
 Lcd_name.setCursor(column,row); To set
cursor On lcd
Example lcd1.setCursor(2,0);.. Set cursor on lcd
first row and second column
 Lcd_name.print ("Write Any text");

Example lcd1.print(" Ultrasonic meter:");


Arduino programming
Lcd display Output

You might also like