ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
THE 8051
MICROCONTROLLER :
I/O INTERFACING
Presented by:-
Abhinav Shubham(131046)
&
Tanmay Kapoor(131053)
11/27/2015
TOPICS OF
DISCUSSION:-
What is IO interfacing?
Recapitulation of PIN Configuration of 8051
Devices to be interfaced
How they are interfaced?
Queries…
11/27/2015
WHAT IS IO INTERFACING
 Input-output interface provides a method for transferring information between
internal storage and external I/O devices.
 Peripherals connected to a microcontroller need special communication links
for interfacing them with the CPU. The purpose of the communication link is to
resolve the differences that exist between the CPU and each peripheral.
The major differences are:
Peripherals are electromechanical and electromagnetic devices and their
manner of operation is different from the operation of the CPU and memory,
which are electronic devices. Therefore, a conversion of signal values may be
required.
The data transfer rate of peripherals is usually slower than the transfer rate of
the CPU, and consequently, a synchronization mechanism may be needed,
etc…..
11/27/2015
PIN CONFIGURATION OF 8051
11/27/2015
Each
port0,port1,port2,
port3 are bidirectional
and 8-bit I/O ports.
Above data for ATMEL
AT89S51
DEVICES WE WILL BE
INTERFACING:-
 LEDS
 LCD
 KEYBOARD
11/27/2015
INTERFACING LEDS
• Connection -Port 0 is connected to eight LEDs,
each of them is connected to 5V through a 330
ohm resistor. Port 1 is connected to a DIP switch
and a 10Kohm resistor
• Condition - Corresponding led should light up
when switch is pressed , i.e. if Switch at P1.0 is
pressed then LED at P0.0 should light up.
11/27/2015
INTERFACING
LEDS(CONTD.)
11/27/2015
CONSIDER…
11/27/2015
HOW TO PROGRAM ?? ..
ASSEMBLY LANGUAGE
LOOP:
mov p1,#0ffh ; To
configure
port1 for input.
mov a,p1
mov p0,a
sjmp LOOP ; Stay in infinite
loop
C LANGUAGE
void main()
unsigned char S;
P1= 0xff; //port1 as input
P0= 0x00; //port0 as output
{
while (1)
{
S=P1; //switch value
P0=P1; //display on led
}
}
11/27/2015
INTERFACING LCD
• LCD is finding widespread use replacing LED
• The declining prices of LCD
• Ability to display numbers, characters and graphics
• Incorporation of a refreshing controller(graphics
controller, e.g. HD44780) within the LCD, there by
relieving the CPU of an additional task.
• LCD is far better than 7 segment display as it has far
better graphics.
• Ease of programming for characters and graphics
11/27/2015
PIN OUT
(LCD)
,16*2
DISPLAY
,
5*7
MATRIX
11/27/2015
11/27/2015
LCD CONNECTIONS
 To send a command :-
 Specify command to
data pins.
 Make R/W=0 (write
operation)
Make RS=0 (select
command register)
Give a H-to-L pulse to
E(enable pin).
 To send data:-
 Write data to data pins
 R/W =0 (write operation)
 Make RS=1 (select data
register)
 Give a H-to-L pulse to
E(enable pin).Data is written
on positive edge of enable
signal.
11/27/2015
ANOTHER ASPECT TO BE TAKEN
CARE OF…. BUSY FLAG(D7-PIN)
• Some delay is needed for LCD to successfully process the
command or data(processing time of lcd).
• So, before data to be written, check if lcd is busy(check the D7-
pin status(if 1 then busy)
• Reading the Busy flag.
• Select command register (RS=0)
• Select read operation (R/W=1)
• Send enable signal (E=1)
• Read the flag
11/27/2015
KEYBOARD
INTERFACING
• Keypad(keyboard) is a widely used input device with lots of
application in our everyday life.
• From a simple telephone to keyboard of a computer, ATM,
electronic lock, elevator, etc., keypad is used to take input
from the user for further processing.
• Keypad is organized as a matrix of switches in rows and
column.
11/27/2015
SO HOW DOES KEYPADS
WORK??..
11/27/2015
 It’s a matrix of rows and
columns(here 4*4)
 Rows and columns intersect at
16 points.(when pressed)
 One of them are connected to
power supply and other one
grounded…
CONNECTIONS TO
PORTS
11/27/2015
Initially all the rows are set to
zero by the controller and the
columns are scanned to check
if any key is pressed. In case
no key is pressed the output of
all the columns will be high.
Whenever a key is pressed the
row and column corresponding
to the key will get short, resulting
in the output of the
corresponding column goes to
low (since we have made all the
rows zero). This gives the
column number of the pressed
key.
Once the column number is detected,
the controller set’s all the rows to
high. Now one by one each row is set
to zero by controller and the earlier
detected column is checked if it
becomes zero. The row
corresponding to which the column
gets zero is the row number of the
digit.
THANK YOU!!!
11/27/2015

More Related Content

What's hot (20)

ARM Architecture
ARM ArchitectureARM Architecture
ARM Architecture
Dwight Sabio
Ìý
8237 dma controller
8237 dma controller8237 dma controller
8237 dma controller
Tech_MX
Ìý
Microprocessor 80386
Microprocessor 80386Microprocessor 80386
Microprocessor 80386
yash sawarkar
Ìý
8086 modes
8086 modes8086 modes
8086 modes
PDFSHARE
Ìý
Unit II arm 7 Instruction Set
Unit II arm 7 Instruction SetUnit II arm 7 Instruction Set
Unit II arm 7 Instruction Set
Dr. Pankaj Zope
Ìý
8251 USART
8251 USART8251 USART
8251 USART
coolsdhanesh
Ìý
Memory & I/O interfacing
Memory & I/O  interfacingMemory & I/O  interfacing
Memory & I/O interfacing
deval patel
Ìý
Sensor interfacing in 8051
Sensor interfacing in 8051Sensor interfacing in 8051
Sensor interfacing in 8051
Irfan Ahmad
Ìý
IEEE-488
IEEE-488IEEE-488
IEEE-488
Jessore University of Science & Technology, Jessore.
Ìý
Interfacing with peripherals: analog to digital converters and digital to ana...
Interfacing with peripherals: analog to digital converters and digital to ana...Interfacing with peripherals: analog to digital converters and digital to ana...
Interfacing with peripherals: analog to digital converters and digital to ana...
NimeshSingh27
Ìý
8051 microcontroller
8051 microcontroller 8051 microcontroller
8051 microcontroller
Gaurav Verma
Ìý
8051 Addressing Modes
8051 Addressing Modes8051 Addressing Modes
8051 Addressing Modes
Senthil Kumar
Ìý
Addressing modes 8085
Addressing modes 8085Addressing modes 8085
Addressing modes 8085
ShivamSood22
Ìý
Pic microcontroller architecture
Pic microcontroller architecturePic microcontroller architecture
Pic microcontroller architecture
DominicHendry
Ìý
ATmega32-AVR microcontrollers-Part I
ATmega32-AVR microcontrollers-Part IATmega32-AVR microcontrollers-Part I
ATmega32-AVR microcontrollers-Part I
VineethMP2
Ìý
8257 DMA Controller
8257 DMA Controller8257 DMA Controller
8257 DMA Controller
ShivamSood22
Ìý
Complex Programmable Logic Device (CPLD) Architecture and Its Applications
Complex Programmable Logic Device (CPLD) Architecture and Its ApplicationsComplex Programmable Logic Device (CPLD) Architecture and Its Applications
Complex Programmable Logic Device (CPLD) Architecture and Its Applications
elprocus
Ìý
DMA and DMA controller
DMA and DMA controllerDMA and DMA controller
DMA and DMA controller
nishant upadhyay
Ìý
ARM Processor
ARM ProcessorARM Processor
ARM Processor
Aniket Thakur
Ìý
Embedded development life cycle
Embedded development life cycleEmbedded development life cycle
Embedded development life cycle
Revathi Subramaniam
Ìý
ARM Architecture
ARM ArchitectureARM Architecture
ARM Architecture
Dwight Sabio
Ìý
8237 dma controller
8237 dma controller8237 dma controller
8237 dma controller
Tech_MX
Ìý
Microprocessor 80386
Microprocessor 80386Microprocessor 80386
Microprocessor 80386
yash sawarkar
Ìý
8086 modes
8086 modes8086 modes
8086 modes
PDFSHARE
Ìý
Unit II arm 7 Instruction Set
Unit II arm 7 Instruction SetUnit II arm 7 Instruction Set
Unit II arm 7 Instruction Set
Dr. Pankaj Zope
Ìý
Memory & I/O interfacing
Memory & I/O  interfacingMemory & I/O  interfacing
Memory & I/O interfacing
deval patel
Ìý
Sensor interfacing in 8051
Sensor interfacing in 8051Sensor interfacing in 8051
Sensor interfacing in 8051
Irfan Ahmad
Ìý
Interfacing with peripherals: analog to digital converters and digital to ana...
Interfacing with peripherals: analog to digital converters and digital to ana...Interfacing with peripherals: analog to digital converters and digital to ana...
Interfacing with peripherals: analog to digital converters and digital to ana...
NimeshSingh27
Ìý
8051 microcontroller
8051 microcontroller 8051 microcontroller
8051 microcontroller
Gaurav Verma
Ìý
8051 Addressing Modes
8051 Addressing Modes8051 Addressing Modes
8051 Addressing Modes
Senthil Kumar
Ìý
Addressing modes 8085
Addressing modes 8085Addressing modes 8085
Addressing modes 8085
ShivamSood22
Ìý
Pic microcontroller architecture
Pic microcontroller architecturePic microcontroller architecture
Pic microcontroller architecture
DominicHendry
Ìý
ATmega32-AVR microcontrollers-Part I
ATmega32-AVR microcontrollers-Part IATmega32-AVR microcontrollers-Part I
ATmega32-AVR microcontrollers-Part I
VineethMP2
Ìý
8257 DMA Controller
8257 DMA Controller8257 DMA Controller
8257 DMA Controller
ShivamSood22
Ìý
Complex Programmable Logic Device (CPLD) Architecture and Its Applications
Complex Programmable Logic Device (CPLD) Architecture and Its ApplicationsComplex Programmable Logic Device (CPLD) Architecture and Its Applications
Complex Programmable Logic Device (CPLD) Architecture and Its Applications
elprocus
Ìý
DMA and DMA controller
DMA and DMA controllerDMA and DMA controller
DMA and DMA controller
nishant upadhyay
Ìý
Embedded development life cycle
Embedded development life cycleEmbedded development life cycle
Embedded development life cycle
Revathi Subramaniam
Ìý

Similar to 8051 io interface (20)

Unit 5
Unit 5Unit 5
Unit 5
tamilnesaner
Ìý
8051.pdf
8051.pdf8051.pdf
8051.pdf
MadhuriAnaparthy
Ìý
Embeded system by Mitesh Kumar
Embeded system by Mitesh KumarEmbeded system by Mitesh Kumar
Embeded system by Mitesh Kumar
Mitesh Kumar
Ìý
8051 Microcontroller
8051 Microcontroller8051 Microcontroller
8051 Microcontroller
thokalpv
Ìý
microcontroller and embedded system
microcontroller and embedded systemmicrocontroller and embedded system
microcontroller and embedded system
pradeep rana
Ìý
Ppt embedded
Ppt embeddedPpt embedded
Ppt embedded
karan bansal
Ìý
8051 MMD Chapter 1.ppt
8051 MMD Chapter 1.ppt8051 MMD Chapter 1.ppt
8051 MMD Chapter 1.ppt
notagain0712
Ìý
DIGITAL VOLTMETER USING 8051 MICROCONTROLLER
DIGITAL VOLTMETER USING 8051 MICROCONTROLLERDIGITAL VOLTMETER USING 8051 MICROCONTROLLER
DIGITAL VOLTMETER USING 8051 MICROCONTROLLER
Chirag Lakhani
Ìý
digitalvoltmeterusing805112b2-170214173216 (1).pdf
digitalvoltmeterusing805112b2-170214173216 (1).pdfdigitalvoltmeterusing805112b2-170214173216 (1).pdf
digitalvoltmeterusing805112b2-170214173216 (1).pdf
satyamsinha37
Ìý
MICROPROCESSOR AND MICROCONTROLLER ARCHITECTURE
MICROPROCESSOR AND MICROCONTROLLER ARCHITECTUREMICROPROCESSOR AND MICROCONTROLLER ARCHITECTURE
MICROPROCESSOR AND MICROCONTROLLER ARCHITECTURE
franklin alex
Ìý
Embedded systems, 8051 microcontroller
Embedded systems, 8051 microcontrollerEmbedded systems, 8051 microcontroller
Embedded systems, 8051 microcontroller
Amandeep Alag
Ìý
Calculator design with lcd using fpga
Calculator design with lcd using fpgaCalculator design with lcd using fpga
Calculator design with lcd using fpga
Hossam Hassan
Ìý
1913523 vanshika
1913523 vanshika1913523 vanshika
1913523 vanshika
VANSHIKAKUSHWAH
Ìý
Class8
Class8Class8
Class8
Sai Santosh Praveen
Ìý
I Ointerface in mp
I Ointerface in mpI Ointerface in mp
I Ointerface in mp
Aisu
Ìý
Galil ioc7007 catalog
Galil ioc7007 catalogGalil ioc7007 catalog
Galil ioc7007 catalog
Electromate
Ìý
INDUSTRIAL TRAINING REPORT EMBEDDED SYSTEM.pptx
INDUSTRIAL TRAINING REPORT EMBEDDED SYSTEM.pptxINDUSTRIAL TRAINING REPORT EMBEDDED SYSTEM.pptx
INDUSTRIAL TRAINING REPORT EMBEDDED SYSTEM.pptx
MeghdeepSingh
Ìý
embedded system
embedded systemembedded system
embedded system
Vivek Ranjan
Ìý
Embedded System
Embedded SystemEmbedded System
Embedded System
Richa Arora
Ìý
Unit 01.Lec2 Introduction to 8051 microcontroller (2).pptx
Unit 01.Lec2 Introduction to 8051 microcontroller (2).pptxUnit 01.Lec2 Introduction to 8051 microcontroller (2).pptx
Unit 01.Lec2 Introduction to 8051 microcontroller (2).pptx
SamarpitaBakshi
Ìý
Embeded system by Mitesh Kumar
Embeded system by Mitesh KumarEmbeded system by Mitesh Kumar
Embeded system by Mitesh Kumar
Mitesh Kumar
Ìý
8051 Microcontroller
8051 Microcontroller8051 Microcontroller
8051 Microcontroller
thokalpv
Ìý
microcontroller and embedded system
microcontroller and embedded systemmicrocontroller and embedded system
microcontroller and embedded system
pradeep rana
Ìý
Ppt embedded
Ppt embeddedPpt embedded
Ppt embedded
karan bansal
Ìý
8051 MMD Chapter 1.ppt
8051 MMD Chapter 1.ppt8051 MMD Chapter 1.ppt
8051 MMD Chapter 1.ppt
notagain0712
Ìý
DIGITAL VOLTMETER USING 8051 MICROCONTROLLER
DIGITAL VOLTMETER USING 8051 MICROCONTROLLERDIGITAL VOLTMETER USING 8051 MICROCONTROLLER
DIGITAL VOLTMETER USING 8051 MICROCONTROLLER
Chirag Lakhani
Ìý
digitalvoltmeterusing805112b2-170214173216 (1).pdf
digitalvoltmeterusing805112b2-170214173216 (1).pdfdigitalvoltmeterusing805112b2-170214173216 (1).pdf
digitalvoltmeterusing805112b2-170214173216 (1).pdf
satyamsinha37
Ìý
MICROPROCESSOR AND MICROCONTROLLER ARCHITECTURE
MICROPROCESSOR AND MICROCONTROLLER ARCHITECTUREMICROPROCESSOR AND MICROCONTROLLER ARCHITECTURE
MICROPROCESSOR AND MICROCONTROLLER ARCHITECTURE
franklin alex
Ìý
Embedded systems, 8051 microcontroller
Embedded systems, 8051 microcontrollerEmbedded systems, 8051 microcontroller
Embedded systems, 8051 microcontroller
Amandeep Alag
Ìý
Calculator design with lcd using fpga
Calculator design with lcd using fpgaCalculator design with lcd using fpga
Calculator design with lcd using fpga
Hossam Hassan
Ìý
I Ointerface in mp
I Ointerface in mpI Ointerface in mp
I Ointerface in mp
Aisu
Ìý
Galil ioc7007 catalog
Galil ioc7007 catalogGalil ioc7007 catalog
Galil ioc7007 catalog
Electromate
Ìý
INDUSTRIAL TRAINING REPORT EMBEDDED SYSTEM.pptx
INDUSTRIAL TRAINING REPORT EMBEDDED SYSTEM.pptxINDUSTRIAL TRAINING REPORT EMBEDDED SYSTEM.pptx
INDUSTRIAL TRAINING REPORT EMBEDDED SYSTEM.pptx
MeghdeepSingh
Ìý
embedded system
embedded systemembedded system
embedded system
Vivek Ranjan
Ìý
Embedded System
Embedded SystemEmbedded System
Embedded System
Richa Arora
Ìý
Unit 01.Lec2 Introduction to 8051 microcontroller (2).pptx
Unit 01.Lec2 Introduction to 8051 microcontroller (2).pptxUnit 01.Lec2 Introduction to 8051 microcontroller (2).pptx
Unit 01.Lec2 Introduction to 8051 microcontroller (2).pptx
SamarpitaBakshi
Ìý

Recently uploaded (20)

Production Planning & Control and Inventory Management.pptx
Production Planning & Control and Inventory Management.pptxProduction Planning & Control and Inventory Management.pptx
Production Planning & Control and Inventory Management.pptx
VirajPasare
Ìý
RES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksns
RES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksnsRES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksns
RES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksns
lakshmirajanna1983
Ìý
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascioKtor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
infogdgmi
Ìý
Protecting Secrets in Transparent Systems
Protecting Secrets in Transparent SystemsProtecting Secrets in Transparent Systems
Protecting Secrets in Transparent Systems
LucaBarbaro3
Ìý
UHV UNIT-5 IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON ...
UHV UNIT-5    IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON ...UHV UNIT-5    IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON ...
UHV UNIT-5 IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON ...
ariomthermal2031
Ìý
green buildings civil engineering -3-1.ppt
green buildings civil engineering -3-1.pptgreen buildings civil engineering -3-1.ppt
green buildings civil engineering -3-1.ppt
devaragudidinesh
Ìý
Cloudera Partner Network Enablement Full.pdf
Cloudera Partner Network Enablement Full.pdfCloudera Partner Network Enablement Full.pdf
Cloudera Partner Network Enablement Full.pdf
Nguyễn Hải
Ìý
Call for Papers - 6th International Conference on Big Data and Machine Learni...
Call for Papers - 6th International Conference on Big Data and Machine Learni...Call for Papers - 6th International Conference on Big Data and Machine Learni...
Call for Papers - 6th International Conference on Big Data and Machine Learni...
IJDKP
Ìý
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptxUHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
ariomthermal2031
Ìý
Artificial intelligence and Machine learning in remote sensing and GIS
Artificial intelligence  and Machine learning in remote sensing and GISArtificial intelligence  and Machine learning in remote sensing and GIS
Artificial intelligence and Machine learning in remote sensing and GIS
amirthamm2083
Ìý
UHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptx
UHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptxUHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptx
UHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptx
ariomthermal2031
Ìý
NBA Criteria TIER I and TIER II Comparison
NBA Criteria TIER I and TIER II ComparisonNBA Criteria TIER I and TIER II Comparison
NBA Criteria TIER I and TIER II Comparison
Dr INBAMALAR T M
Ìý
Energy Transition Factbook Bloomberg.pdf
Energy Transition Factbook Bloomberg.pdfEnergy Transition Factbook Bloomberg.pdf
Energy Transition Factbook Bloomberg.pdf
CarlosdelaFuenteMnde
Ìý
Introduction to 3D Printing Technology.pptx
Introduction to 3D Printing Technology.pptxIntroduction to 3D Printing Technology.pptx
Introduction to 3D Printing Technology.pptx
pprakash21252
Ìý
Introduction to Forensic Research Digital Forensics
Introduction to Forensic Research Digital ForensicsIntroduction to Forensic Research Digital Forensics
Introduction to Forensic Research Digital Forensics
SaanviMisar
Ìý
Urban Design and Planning Portfolio .pdf
Urban Design and Planning Portfolio .pdfUrban Design and Planning Portfolio .pdf
Urban Design and Planning Portfolio .pdf
sonam254547
Ìý
FIRST Tech Challenge/Robotics: Scouting out the competition
FIRST Tech Challenge/Robotics: Scouting out the competitionFIRST Tech Challenge/Robotics: Scouting out the competition
FIRST Tech Challenge/Robotics: Scouting out the competition
FTC Team 23014
Ìý
module-4.1-Class notes_R and DD_basket-IV -.pdf
module-4.1-Class notes_R and DD_basket-IV -.pdfmodule-4.1-Class notes_R and DD_basket-IV -.pdf
module-4.1-Class notes_R and DD_basket-IV -.pdf
ritikkumarchaudhury7
Ìý
UHV unit-2UNIT - II HARMONY IN THE HUMAN BEING.pptx
UHV unit-2UNIT - II HARMONY IN THE HUMAN BEING.pptxUHV unit-2UNIT - II HARMONY IN THE HUMAN BEING.pptx
UHV unit-2UNIT - II HARMONY IN THE HUMAN BEING.pptx
ariomthermal2031
Ìý
Topic 3.NN and DL Hopfield Networks.pptx
Topic 3.NN and DL Hopfield Networks.pptxTopic 3.NN and DL Hopfield Networks.pptx
Topic 3.NN and DL Hopfield Networks.pptx
ManjulaRavichandran5
Ìý
Production Planning & Control and Inventory Management.pptx
Production Planning & Control and Inventory Management.pptxProduction Planning & Control and Inventory Management.pptx
Production Planning & Control and Inventory Management.pptx
VirajPasare
Ìý
RES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksns
RES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksnsRES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksns
RES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksns
lakshmirajanna1983
Ìý
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascioKtor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
infogdgmi
Ìý
Protecting Secrets in Transparent Systems
Protecting Secrets in Transparent SystemsProtecting Secrets in Transparent Systems
Protecting Secrets in Transparent Systems
LucaBarbaro3
Ìý
UHV UNIT-5 IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON ...
UHV UNIT-5    IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON ...UHV UNIT-5    IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON ...
UHV UNIT-5 IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON ...
ariomthermal2031
Ìý
green buildings civil engineering -3-1.ppt
green buildings civil engineering -3-1.pptgreen buildings civil engineering -3-1.ppt
green buildings civil engineering -3-1.ppt
devaragudidinesh
Ìý
Cloudera Partner Network Enablement Full.pdf
Cloudera Partner Network Enablement Full.pdfCloudera Partner Network Enablement Full.pdf
Cloudera Partner Network Enablement Full.pdf
Nguyễn Hải
Ìý
Call for Papers - 6th International Conference on Big Data and Machine Learni...
Call for Papers - 6th International Conference on Big Data and Machine Learni...Call for Papers - 6th International Conference on Big Data and Machine Learni...
Call for Papers - 6th International Conference on Big Data and Machine Learni...
IJDKP
Ìý
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptxUHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
ariomthermal2031
Ìý
Artificial intelligence and Machine learning in remote sensing and GIS
Artificial intelligence  and Machine learning in remote sensing and GISArtificial intelligence  and Machine learning in remote sensing and GIS
Artificial intelligence and Machine learning in remote sensing and GIS
amirthamm2083
Ìý
UHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptx
UHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptxUHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptx
UHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptx
ariomthermal2031
Ìý
NBA Criteria TIER I and TIER II Comparison
NBA Criteria TIER I and TIER II ComparisonNBA Criteria TIER I and TIER II Comparison
NBA Criteria TIER I and TIER II Comparison
Dr INBAMALAR T M
Ìý
Energy Transition Factbook Bloomberg.pdf
Energy Transition Factbook Bloomberg.pdfEnergy Transition Factbook Bloomberg.pdf
Energy Transition Factbook Bloomberg.pdf
CarlosdelaFuenteMnde
Ìý
Introduction to 3D Printing Technology.pptx
Introduction to 3D Printing Technology.pptxIntroduction to 3D Printing Technology.pptx
Introduction to 3D Printing Technology.pptx
pprakash21252
Ìý
Introduction to Forensic Research Digital Forensics
Introduction to Forensic Research Digital ForensicsIntroduction to Forensic Research Digital Forensics
Introduction to Forensic Research Digital Forensics
SaanviMisar
Ìý
Urban Design and Planning Portfolio .pdf
Urban Design and Planning Portfolio .pdfUrban Design and Planning Portfolio .pdf
Urban Design and Planning Portfolio .pdf
sonam254547
Ìý
FIRST Tech Challenge/Robotics: Scouting out the competition
FIRST Tech Challenge/Robotics: Scouting out the competitionFIRST Tech Challenge/Robotics: Scouting out the competition
FIRST Tech Challenge/Robotics: Scouting out the competition
FTC Team 23014
Ìý
module-4.1-Class notes_R and DD_basket-IV -.pdf
module-4.1-Class notes_R and DD_basket-IV -.pdfmodule-4.1-Class notes_R and DD_basket-IV -.pdf
module-4.1-Class notes_R and DD_basket-IV -.pdf
ritikkumarchaudhury7
Ìý
UHV unit-2UNIT - II HARMONY IN THE HUMAN BEING.pptx
UHV unit-2UNIT - II HARMONY IN THE HUMAN BEING.pptxUHV unit-2UNIT - II HARMONY IN THE HUMAN BEING.pptx
UHV unit-2UNIT - II HARMONY IN THE HUMAN BEING.pptx
ariomthermal2031
Ìý
Topic 3.NN and DL Hopfield Networks.pptx
Topic 3.NN and DL Hopfield Networks.pptxTopic 3.NN and DL Hopfield Networks.pptx
Topic 3.NN and DL Hopfield Networks.pptx
ManjulaRavichandran5
Ìý

8051 io interface

  • 1. THE 8051 MICROCONTROLLER : I/O INTERFACING Presented by:- Abhinav Shubham(131046) & Tanmay Kapoor(131053) 11/27/2015
  • 2. TOPICS OF DISCUSSION:- What is IO interfacing? Recapitulation of PIN Configuration of 8051 Devices to be interfaced How they are interfaced? Queries… 11/27/2015
  • 3. WHAT IS IO INTERFACING  Input-output interface provides a method for transferring information between internal storage and external I/O devices.  Peripherals connected to a microcontroller need special communication links for interfacing them with the CPU. The purpose of the communication link is to resolve the differences that exist between the CPU and each peripheral. The major differences are: Peripherals are electromechanical and electromagnetic devices and their manner of operation is different from the operation of the CPU and memory, which are electronic devices. Therefore, a conversion of signal values may be required. The data transfer rate of peripherals is usually slower than the transfer rate of the CPU, and consequently, a synchronization mechanism may be needed, etc….. 11/27/2015
  • 4. PIN CONFIGURATION OF 8051 11/27/2015 Each port0,port1,port2, port3 are bidirectional and 8-bit I/O ports. Above data for ATMEL AT89S51
  • 5. DEVICES WE WILL BE INTERFACING:-  LEDS  LCD  KEYBOARD 11/27/2015
  • 6. INTERFACING LEDS • Connection -Port 0 is connected to eight LEDs, each of them is connected to 5V through a 330 ohm resistor. Port 1 is connected to a DIP switch and a 10Kohm resistor • Condition - Corresponding led should light up when switch is pressed , i.e. if Switch at P1.0 is pressed then LED at P0.0 should light up. 11/27/2015
  • 9. HOW TO PROGRAM ?? .. ASSEMBLY LANGUAGE LOOP: mov p1,#0ffh ; To configure port1 for input. mov a,p1 mov p0,a sjmp LOOP ; Stay in infinite loop C LANGUAGE void main() unsigned char S; P1= 0xff; //port1 as input P0= 0x00; //port0 as output { while (1) { S=P1; //switch value P0=P1; //display on led } } 11/27/2015
  • 10. INTERFACING LCD • LCD is finding widespread use replacing LED • The declining prices of LCD • Ability to display numbers, characters and graphics • Incorporation of a refreshing controller(graphics controller, e.g. HD44780) within the LCD, there by relieving the CPU of an additional task. • LCD is far better than 7 segment display as it has far better graphics. • Ease of programming for characters and graphics 11/27/2015
  • 13. LCD CONNECTIONS  To send a command :-  Specify command to data pins.  Make R/W=0 (write operation) Make RS=0 (select command register) Give a H-to-L pulse to E(enable pin).  To send data:-  Write data to data pins  R/W =0 (write operation)  Make RS=1 (select data register)  Give a H-to-L pulse to E(enable pin).Data is written on positive edge of enable signal. 11/27/2015
  • 14. ANOTHER ASPECT TO BE TAKEN CARE OF…. BUSY FLAG(D7-PIN) • Some delay is needed for LCD to successfully process the command or data(processing time of lcd). • So, before data to be written, check if lcd is busy(check the D7- pin status(if 1 then busy) • Reading the Busy flag. • Select command register (RS=0) • Select read operation (R/W=1) • Send enable signal (E=1) • Read the flag 11/27/2015
  • 15. KEYBOARD INTERFACING • Keypad(keyboard) is a widely used input device with lots of application in our everyday life. • From a simple telephone to keyboard of a computer, ATM, electronic lock, elevator, etc., keypad is used to take input from the user for further processing. • Keypad is organized as a matrix of switches in rows and column. 11/27/2015
  • 16. SO HOW DOES KEYPADS WORK??.. 11/27/2015  It’s a matrix of rows and columns(here 4*4)  Rows and columns intersect at 16 points.(when pressed)  One of them are connected to power supply and other one grounded…
  • 17. CONNECTIONS TO PORTS 11/27/2015 Initially all the rows are set to zero by the controller and the columns are scanned to check if any key is pressed. In case no key is pressed the output of all the columns will be high. Whenever a key is pressed the row and column corresponding to the key will get short, resulting in the output of the corresponding column goes to low (since we have made all the rows zero). This gives the column number of the pressed key. Once the column number is detected, the controller set’s all the rows to high. Now one by one each row is set to zero by controller and the earlier detected column is checked if it becomes zero. The row corresponding to which the column gets zero is the row number of the digit.

Editor's Notes

  • #14: Note- port1 used as output, port2 used as control port of lcd