際際滷

際際滷Share a Scribd company logo
Sensor interfacing in 8051
Microcontroller
to Sensor
Interfacing
Techniques
GROUP MEMBERS
 IRFAN
AHMAD
 MUHAMMAD
JUNAID
 MUHAMMAD
ISHAQ
 ALAM NASIR
Micro-controllers are useful to the extent that they communicate
with other devices, such as sensors,
motors, switches, keypads, displays, memory and even other
micro-controllers
 Many microcontroller designs typically
mix multiple interfacing methods. In a
very simplistic form, a microcontroller
 system can be viewed as a system
that reads from (monitors) inputs,
performs processing and
 writes to ( controls ) outputs.
Input Devices Microcontroller Output
Devices
Microcontroller Interfaces
Analog Interface
Analog Inputs/Outputs
Sensor Types Temperature
Sensors
Sensor interfacing in 8051
Thermistors
LM34 and LM35 Temperature Sensors
 The sensors of the LM34/LM35 series
 are good integrated-circuit
 temperature sensors whose output
 voltage is linearly proportional to the
 Fahrenheit/Celsius temperature
  The LM34/LM35 requires no external
 calibration since it is inherently calibrated
  It outputs 10 mV for each degree of
 Fahrenheit/Celsius temperature
Sensor interfacing in 8051
Semiconductor Temperature
Sensors
8051 Connection to ADC0848 and
Temperature Sensor
 ADC0804 is a very commonly used 8-bit analog to
digital convertor. It is a single channel IC, i.e., it can
take only one analog signal as input. The digital
outputs vary from 0 to a maximum of 255. The step
size can be adjusted by setting the reference voltage at
pin9. When this pin is not connected, the default
reference voltage is the operating voltage, i.e., Vcc.
The step size at 5V is 19.53mV (5V/255), i.e., for every
19.53mV rise in the analog input, the output varies by 1
unit. To set a particular voltage level as the reference
value, this pin is connected to half the voltage. For
example, to set a refer ence of 4V (Vref), pin9 is
connected to 2V (Vref/2), thereby reducing the step
size to 15.62mV (4V/255).
QUESTION?
Q1
Q2
ADC808 has 8 analog inputs
  It allows us to monitor up to 8 different
 transducers using only a single chip
  The chip has 8-bit data output just like
the
 ADC804
  The 8 analog input channels are
 multiplexed and selected according to
table
 below using three address pins, A, B,
and C
8051 Connection to ADC804
and Temperature Sensor
Getting Data From the Analog
World
Noise considerations
 Many sensors, such as
thermocouples, generate a relatively
small voltage so noise is always an
issue.
 The most common source of noise is
the utility power lines (50 Hz or 60
Hz).
 Typically, the bandwidth for
temperature sensors is much lower
than 50 or 60 Hz so a simple low-pass
FOR GROUNDING
Program:Code to read temp from ASC0848,convert it to
decimal,and put it on P0 with some delay?.
 #include<reg51.h>
 bit RD=P2^5;
 Sbit WR=P2^6;
 sbit E=P2^7;
 Sfr MYDATA=P1;
 Void
ConvertAndDisplay(unsigne
d char value);
 Void MSDelay(unsigned int
value);
 Void main()
 {
 MYDATA =0xFF;
 E=1;
 RD=1;
 WR=1;
 While(1)
 {
 WR=0;
 WR=1;
 While(INTR==1);
RD=0;
Value=MYDATA;
ConvertAndDisplay(value);
RD=1;
}
}
Id ConvertAndDisplay(unsigned char value)
{
Unsigned char x,d1,d2,d3;
X=value/10;
d1=value%10;
d2=X/10;
d3=X/10;
P0=d1;
MSDelay(250);
P0=d2;
MSDelay(250);
P0=d3;
MSDelay(250);
}
Void MSDelay(unsigned int value)
{
unsigned char x,y;
For(x=0;x<value;x++)
For(y=0;y<1275;y++);
}
Sensor interfacing in 8051

More Related Content

What's hot (20)

DAC-digital to analog converter
DAC-digital to analog converterDAC-digital to analog converter
DAC-digital to analog converter
Shazid Reaj
DAC Interfacing with 8051.pdf
DAC Interfacing with 8051.pdfDAC Interfacing with 8051.pdf
DAC Interfacing with 8051.pdf
Srikrishna Thota
(D/A) and (A/D)conversion
(D/A) and (A/D)conversion(D/A) and (A/D)conversion
(D/A) and (A/D)conversion
Praveen Kumar
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
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
Interfacing LCD with 8051 Microcontroller
Interfacing LCD with 8051 MicrocontrollerInterfacing LCD with 8051 Microcontroller
Interfacing LCD with 8051 Microcontroller
Pantech ProLabs India Pvt Ltd
Adc interfacing
Adc interfacingAdc interfacing
Adc interfacing
Monica Gunjal
Memory & I/O interfacing
Memory & I/O  interfacingMemory & I/O  interfacing
Memory & I/O interfacing
deval patel
Microcontroller-8051.ppt
Microcontroller-8051.pptMicrocontroller-8051.ppt
Microcontroller-8051.ppt
Dr.YNM
8051 Microcontroller I/O ports
8051 Microcontroller I/O ports8051 Microcontroller I/O ports
8051 Microcontroller I/O ports
anishgoel
8051 instruction set
8051 instruction set8051 instruction set
8051 instruction set
Andri Prastiyo
Architecture of 8051
Architecture of 8051Architecture of 8051
Architecture of 8051
hello_priti
Serial Communication in 8051
Serial Communication in 8051Serial Communication in 8051
Serial Communication in 8051
Sudhanshu Janwadkar
Ditial to Analog Converter
Ditial to Analog ConverterDitial to Analog Converter
Ditial to Analog Converter
Gauravsinh Parmar
Arm instruction set
Arm instruction setArm instruction set
Arm instruction set
Mathivanan Natarajan
Interfacing adc
Interfacing adcInterfacing adc
Interfacing adc
PRADEEP
LCD Interacing with 8051
LCD Interacing with 8051LCD Interacing with 8051
LCD Interacing with 8051
Sudhanshu Janwadkar
Automatic temperature control using 8085 microprocessor
Automatic temperature control using 8085 microprocessorAutomatic temperature control using 8085 microprocessor
Automatic temperature control using 8085 microprocessor
subhradeep mitra
interfacing of temperature sensor LM 35 with 8051.pdf
interfacing of temperature sensor LM 35 with 8051.pdfinterfacing of temperature sensor LM 35 with 8051.pdf
interfacing of temperature sensor LM 35 with 8051.pdf
Srikrishna Thota
Analog & Digital Integrated Circuits - Material (Short Answers)
Analog & Digital Integrated Circuits -  Material (Short Answers) Analog & Digital Integrated Circuits -  Material (Short Answers)
Analog & Digital Integrated Circuits - Material (Short Answers)
Mathankumar S
DAC-digital to analog converter
DAC-digital to analog converterDAC-digital to analog converter
DAC-digital to analog converter
Shazid Reaj
DAC Interfacing with 8051.pdf
DAC Interfacing with 8051.pdfDAC Interfacing with 8051.pdf
DAC Interfacing with 8051.pdf
Srikrishna Thota
(D/A) and (A/D)conversion
(D/A) and (A/D)conversion(D/A) and (A/D)conversion
(D/A) and (A/D)conversion
Praveen Kumar
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
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
Microcontroller-8051.ppt
Microcontroller-8051.pptMicrocontroller-8051.ppt
Microcontroller-8051.ppt
Dr.YNM
8051 Microcontroller I/O ports
8051 Microcontroller I/O ports8051 Microcontroller I/O ports
8051 Microcontroller I/O ports
anishgoel
8051 instruction set
8051 instruction set8051 instruction set
8051 instruction set
Andri Prastiyo
Architecture of 8051
Architecture of 8051Architecture of 8051
Architecture of 8051
hello_priti
Ditial to Analog Converter
Ditial to Analog ConverterDitial to Analog Converter
Ditial to Analog Converter
Gauravsinh Parmar
Interfacing adc
Interfacing adcInterfacing adc
Interfacing adc
PRADEEP
Automatic temperature control using 8085 microprocessor
Automatic temperature control using 8085 microprocessorAutomatic temperature control using 8085 microprocessor
Automatic temperature control using 8085 microprocessor
subhradeep mitra
interfacing of temperature sensor LM 35 with 8051.pdf
interfacing of temperature sensor LM 35 with 8051.pdfinterfacing of temperature sensor LM 35 with 8051.pdf
interfacing of temperature sensor LM 35 with 8051.pdf
Srikrishna Thota
Analog & Digital Integrated Circuits - Material (Short Answers)
Analog & Digital Integrated Circuits -  Material (Short Answers) Analog & Digital Integrated Circuits -  Material (Short Answers)
Analog & Digital Integrated Circuits - Material (Short Answers)
Mathankumar S

Similar to Sensor interfacing in 8051 (20)

MPC of TWT based Transmitter
MPC of TWT based TransmitterMPC of TWT based Transmitter
MPC of TWT based Transmitter
Abhishek Sutrave
Interfacing Analog to Digital Data Converters ee3404.pdf
Interfacing Analog to Digital Data Converters ee3404.pdfInterfacing Analog to Digital Data Converters ee3404.pdf
Interfacing Analog to Digital Data Converters ee3404.pdf
ragupathi90
UNIT 4 & 5 - I nterfacing_Lecture7.pptx
UNIT 4 & 5 - I         nterfacing_Lecture7.pptxUNIT 4 & 5 - I         nterfacing_Lecture7.pptx
UNIT 4 & 5 - I nterfacing_Lecture7.pptx
naveen088888
AUTOMATIC GRID ON SENSING BAD VOLTAGE OR FREQUENCY
AUTOMATIC GRID ON SENSING BAD VOLTAGE OR FREQUENCYAUTOMATIC GRID ON SENSING BAD VOLTAGE OR FREQUENCY
AUTOMATIC GRID ON SENSING BAD VOLTAGE OR FREQUENCY
Gaurav Singh
File 1389427052
File 1389427052File 1389427052
File 1389427052
Aman_preet
adcPresentation for microcontrolling process techniq
adcPresentation for microcontrolling process techniqadcPresentation for microcontrolling process techniq
adcPresentation for microcontrolling process techniq
shikhashrivastava27
Quickly design infrared body temperature detector
Quickly design infrared body temperature detectorQuickly design infrared body temperature detector
Quickly design infrared body temperature detector
Vinsion Chan
Pic ppt 13104022(4th_year)
Pic ppt 13104022(4th_year)Pic ppt 13104022(4th_year)
Pic ppt 13104022(4th_year)
Daman Singh
Monitoring and data logging system for a generator
Monitoring and data logging system for a generatorMonitoring and data logging system for a generator
Monitoring and data logging system for a generator
Moon Shahzad
Microprocessor project
Microprocessor projectMicroprocessor project
Microprocessor project
prapyapokharel
electrical engineering project
electrical engineering projectelectrical engineering project
electrical engineering project
vasav2204
ELECTRICAL ENGINEERING PROJECT
ELECTRICAL ENGINEERING PROJECTELECTRICAL ENGINEERING PROJECT
ELECTRICAL ENGINEERING PROJECT
vasav2204
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 based Temperature Controller
Microprocessor based Temperature ControllerMicroprocessor based Temperature Controller
Microprocessor based Temperature Controller
Revanth Reddy
A Unique Approach to Developing Sensor Signal Path Solutions
A Unique Approach to Developing Sensor Signal Path SolutionsA Unique Approach to Developing Sensor Signal Path Solutions
A Unique Approach to Developing Sensor Signal Path Solutions
Harold Joseph
Speed control of motor
Speed control of motorSpeed control of motor
Speed control of motor
Pankaj Kumar Nayak
Embedded systems optimization memory requirments.pptx
Embedded systems optimization memory requirments.pptxEmbedded systems optimization memory requirments.pptx
Embedded systems optimization memory requirments.pptx
satheeshKumar750
A PROJECT ON scada.pptx
A PROJECT ON scada.pptxA PROJECT ON scada.pptx
A PROJECT ON scada.pptx
AshhadRaza1
Temperature Sensors Types
Temperature Sensors  TypesTemperature Sensors  Types
Temperature Sensors Types
elprocus
MPC of TWT based Transmitter
MPC of TWT based TransmitterMPC of TWT based Transmitter
MPC of TWT based Transmitter
Abhishek Sutrave
Interfacing Analog to Digital Data Converters ee3404.pdf
Interfacing Analog to Digital Data Converters ee3404.pdfInterfacing Analog to Digital Data Converters ee3404.pdf
Interfacing Analog to Digital Data Converters ee3404.pdf
ragupathi90
UNIT 4 & 5 - I nterfacing_Lecture7.pptx
UNIT 4 & 5 - I         nterfacing_Lecture7.pptxUNIT 4 & 5 - I         nterfacing_Lecture7.pptx
UNIT 4 & 5 - I nterfacing_Lecture7.pptx
naveen088888
AUTOMATIC GRID ON SENSING BAD VOLTAGE OR FREQUENCY
AUTOMATIC GRID ON SENSING BAD VOLTAGE OR FREQUENCYAUTOMATIC GRID ON SENSING BAD VOLTAGE OR FREQUENCY
AUTOMATIC GRID ON SENSING BAD VOLTAGE OR FREQUENCY
Gaurav Singh
File 1389427052
File 1389427052File 1389427052
File 1389427052
Aman_preet
adcPresentation for microcontrolling process techniq
adcPresentation for microcontrolling process techniqadcPresentation for microcontrolling process techniq
adcPresentation for microcontrolling process techniq
shikhashrivastava27
Quickly design infrared body temperature detector
Quickly design infrared body temperature detectorQuickly design infrared body temperature detector
Quickly design infrared body temperature detector
Vinsion Chan
Pic ppt 13104022(4th_year)
Pic ppt 13104022(4th_year)Pic ppt 13104022(4th_year)
Pic ppt 13104022(4th_year)
Daman Singh
Monitoring and data logging system for a generator
Monitoring and data logging system for a generatorMonitoring and data logging system for a generator
Monitoring and data logging system for a generator
Moon Shahzad
Microprocessor project
Microprocessor projectMicroprocessor project
Microprocessor project
prapyapokharel
electrical engineering project
electrical engineering projectelectrical engineering project
electrical engineering project
vasav2204
ELECTRICAL ENGINEERING PROJECT
ELECTRICAL ENGINEERING PROJECTELECTRICAL ENGINEERING PROJECT
ELECTRICAL ENGINEERING PROJECT
vasav2204
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 based Temperature Controller
Microprocessor based Temperature ControllerMicroprocessor based Temperature Controller
Microprocessor based Temperature Controller
Revanth Reddy
A Unique Approach to Developing Sensor Signal Path Solutions
A Unique Approach to Developing Sensor Signal Path SolutionsA Unique Approach to Developing Sensor Signal Path Solutions
A Unique Approach to Developing Sensor Signal Path Solutions
Harold Joseph
Embedded systems optimization memory requirments.pptx
Embedded systems optimization memory requirments.pptxEmbedded systems optimization memory requirments.pptx
Embedded systems optimization memory requirments.pptx
satheeshKumar750
A PROJECT ON scada.pptx
A PROJECT ON scada.pptxA PROJECT ON scada.pptx
A PROJECT ON scada.pptx
AshhadRaza1
Temperature Sensors Types
Temperature Sensors  TypesTemperature Sensors  Types
Temperature Sensors Types
elprocus

Recently uploaded (20)

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
UHV UNIT-I INTRODUCTION TO VALUE EDUCATION .pptx
UHV UNIT-I INTRODUCTION TO VALUE EDUCATION  .pptxUHV UNIT-I INTRODUCTION TO VALUE EDUCATION  .pptx
UHV UNIT-I INTRODUCTION TO VALUE EDUCATION .pptx
ariomthermal2031
Introduction to Forensic Research Digital Forensics
Introduction to Forensic Research Digital ForensicsIntroduction to Forensic Research Digital Forensics
Introduction to Forensic Research Digital Forensics
SaanviMisar
e-health to improve the effectiveness of the Healthcare system
e-health to improve the  effectiveness of the Healthcare systeme-health to improve the  effectiveness of the Healthcare system
e-health to improve the effectiveness of the Healthcare system
Dr INBAMALAR T M
English presentation, tests and experiments.pptx
English presentation, tests and experiments.pptxEnglish presentation, tests and experiments.pptx
English presentation, tests and experiments.pptx
SamahEL2
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 - 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
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
Lecture 16 - 17 - NonTraditional Machining Presentation.ppt
Lecture 16 - 17 - NonTraditional Machining Presentation.pptLecture 16 - 17 - NonTraditional Machining Presentation.ppt
Lecture 16 - 17 - NonTraditional Machining Presentation.ppt
INSTITUTE OF ENGINEERING /BKC
Distributed renewable energy in Colombia.OECD2023.pdf
Distributed renewable energy in Colombia.OECD2023.pdfDistributed renewable energy in Colombia.OECD2023.pdf
Distributed renewable energy in Colombia.OECD2023.pdf
SantiagoCardonaGallo
Cecille Seminario Marra - Specializes In Medical Technology
Cecille Seminario Marra - Specializes In Medical TechnologyCecille Seminario Marra - Specializes In Medical Technology
Cecille Seminario Marra - Specializes In Medical Technology
Cecille Seminario Marra
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Ignacio J. J. Palma Carazo
Chapter1-Introduction 旅留粒粒旅虜劉 劉僚僚凌旅竜
Chapter1-Introduction 旅留粒粒旅虜劉 劉僚僚凌旅竜Chapter1-Introduction 旅留粒粒旅虜劉 劉僚僚凌旅竜
Chapter1-Introduction 旅留粒粒旅虜劉 劉僚僚凌旅竜
ssuserb91a20
GRAPHS AND DISCONTINUITIES POWERPOINT.pptx
GRAPHS AND DISCONTINUITIES POWERPOINT.pptxGRAPHS AND DISCONTINUITIES POWERPOINT.pptx
GRAPHS AND DISCONTINUITIES POWERPOINT.pptx
ChrisPuyoc1
02.BigDataAnalytics curso de Legsi (1).pdf
02.BigDataAnalytics curso de Legsi (1).pdf02.BigDataAnalytics curso de Legsi (1).pdf
02.BigDataAnalytics curso de Legsi (1).pdf
ruioliveira1921
DBMS Notes selection projection aggregate
DBMS Notes selection projection aggregateDBMS Notes selection projection aggregate
DBMS Notes selection projection aggregate
Sreedhar Chowdam
Data+Management+Masterclasssdfsdfsdfsd.pdf
Data+Management+Masterclasssdfsdfsdfsd.pdfData+Management+Masterclasssdfsdfsdfsd.pdf
Data+Management+Masterclasssdfsdfsdfsd.pdf
Nguy畛n H畉i
Water Industry Process Automation & Control Monthly - April 2025
Water Industry Process Automation & Control Monthly - April 2025Water Industry Process Automation & Control Monthly - April 2025
Water Industry Process Automation & Control Monthly - April 2025
Water Industry Process Automation & Control
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
Floating Offshore Wind in the Celtic Sea
Floating Offshore Wind in the Celtic SeaFloating Offshore Wind in the Celtic Sea
Floating Offshore Wind in the Celtic Sea
permagoveu
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
UHV UNIT-I INTRODUCTION TO VALUE EDUCATION .pptx
UHV UNIT-I INTRODUCTION TO VALUE EDUCATION  .pptxUHV UNIT-I INTRODUCTION TO VALUE EDUCATION  .pptx
UHV UNIT-I INTRODUCTION TO VALUE EDUCATION .pptx
ariomthermal2031
Introduction to Forensic Research Digital Forensics
Introduction to Forensic Research Digital ForensicsIntroduction to Forensic Research Digital Forensics
Introduction to Forensic Research Digital Forensics
SaanviMisar
e-health to improve the effectiveness of the Healthcare system
e-health to improve the  effectiveness of the Healthcare systeme-health to improve the  effectiveness of the Healthcare system
e-health to improve the effectiveness of the Healthcare system
Dr INBAMALAR T M
English presentation, tests and experiments.pptx
English presentation, tests and experiments.pptxEnglish presentation, tests and experiments.pptx
English presentation, tests and experiments.pptx
SamahEL2
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 - 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
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
Lecture 16 - 17 - NonTraditional Machining Presentation.ppt
Lecture 16 - 17 - NonTraditional Machining Presentation.pptLecture 16 - 17 - NonTraditional Machining Presentation.ppt
Lecture 16 - 17 - NonTraditional Machining Presentation.ppt
INSTITUTE OF ENGINEERING /BKC
Distributed renewable energy in Colombia.OECD2023.pdf
Distributed renewable energy in Colombia.OECD2023.pdfDistributed renewable energy in Colombia.OECD2023.pdf
Distributed renewable energy in Colombia.OECD2023.pdf
SantiagoCardonaGallo
Cecille Seminario Marra - Specializes In Medical Technology
Cecille Seminario Marra - Specializes In Medical TechnologyCecille Seminario Marra - Specializes In Medical Technology
Cecille Seminario Marra - Specializes In Medical Technology
Cecille Seminario Marra
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Ignacio J. J. Palma Carazo
Chapter1-Introduction 旅留粒粒旅虜劉 劉僚僚凌旅竜
Chapter1-Introduction 旅留粒粒旅虜劉 劉僚僚凌旅竜Chapter1-Introduction 旅留粒粒旅虜劉 劉僚僚凌旅竜
Chapter1-Introduction 旅留粒粒旅虜劉 劉僚僚凌旅竜
ssuserb91a20
GRAPHS AND DISCONTINUITIES POWERPOINT.pptx
GRAPHS AND DISCONTINUITIES POWERPOINT.pptxGRAPHS AND DISCONTINUITIES POWERPOINT.pptx
GRAPHS AND DISCONTINUITIES POWERPOINT.pptx
ChrisPuyoc1
02.BigDataAnalytics curso de Legsi (1).pdf
02.BigDataAnalytics curso de Legsi (1).pdf02.BigDataAnalytics curso de Legsi (1).pdf
02.BigDataAnalytics curso de Legsi (1).pdf
ruioliveira1921
DBMS Notes selection projection aggregate
DBMS Notes selection projection aggregateDBMS Notes selection projection aggregate
DBMS Notes selection projection aggregate
Sreedhar Chowdam
Data+Management+Masterclasssdfsdfsdfsd.pdf
Data+Management+Masterclasssdfsdfsdfsd.pdfData+Management+Masterclasssdfsdfsdfsd.pdf
Data+Management+Masterclasssdfsdfsdfsd.pdf
Nguy畛n H畉i
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
Floating Offshore Wind in the Celtic Sea
Floating Offshore Wind in the Celtic SeaFloating Offshore Wind in the Celtic Sea
Floating Offshore Wind in the Celtic Sea
permagoveu

Sensor interfacing in 8051

  • 2. Microcontroller to Sensor Interfacing Techniques GROUP MEMBERS IRFAN AHMAD MUHAMMAD JUNAID MUHAMMAD ISHAQ ALAM NASIR
  • 3. Micro-controllers are useful to the extent that they communicate with other devices, such as sensors, motors, switches, keypads, displays, memory and even other micro-controllers Many microcontroller designs typically mix multiple interfacing methods. In a very simplistic form, a microcontroller system can be viewed as a system that reads from (monitors) inputs, performs processing and writes to ( controls ) outputs.
  • 11. LM34 and LM35 Temperature Sensors The sensors of the LM34/LM35 series are good integrated-circuit temperature sensors whose output voltage is linearly proportional to the Fahrenheit/Celsius temperature The LM34/LM35 requires no external calibration since it is inherently calibrated It outputs 10 mV for each degree of Fahrenheit/Celsius temperature
  • 14. 8051 Connection to ADC0848 and Temperature Sensor ADC0804 is a very commonly used 8-bit analog to digital convertor. It is a single channel IC, i.e., it can take only one analog signal as input. The digital outputs vary from 0 to a maximum of 255. The step size can be adjusted by setting the reference voltage at pin9. When this pin is not connected, the default reference voltage is the operating voltage, i.e., Vcc. The step size at 5V is 19.53mV (5V/255), i.e., for every 19.53mV rise in the analog input, the output varies by 1 unit. To set a particular voltage level as the reference value, this pin is connected to half the voltage. For example, to set a refer ence of 4V (Vref), pin9 is connected to 2V (Vref/2), thereby reducing the step size to 15.62mV (4V/255).
  • 16. ADC808 has 8 analog inputs It allows us to monitor up to 8 different transducers using only a single chip The chip has 8-bit data output just like the ADC804 The 8 analog input channels are multiplexed and selected according to table below using three address pins, A, B, and C
  • 17. 8051 Connection to ADC804 and Temperature Sensor
  • 18. Getting Data From the Analog World
  • 19. Noise considerations Many sensors, such as thermocouples, generate a relatively small voltage so noise is always an issue. The most common source of noise is the utility power lines (50 Hz or 60 Hz). Typically, the bandwidth for temperature sensors is much lower than 50 or 60 Hz so a simple low-pass
  • 21. Program:Code to read temp from ASC0848,convert it to decimal,and put it on P0 with some delay?. #include<reg51.h> bit RD=P2^5; Sbit WR=P2^6; sbit E=P2^7; Sfr MYDATA=P1; Void ConvertAndDisplay(unsigne d char value); Void MSDelay(unsigned int value); Void main() { MYDATA =0xFF; E=1; RD=1; WR=1; While(1) { WR=0; WR=1; While(INTR==1); RD=0; Value=MYDATA; ConvertAndDisplay(value); RD=1; } } Id ConvertAndDisplay(unsigned char value) { Unsigned char x,d1,d2,d3; X=value/10; d1=value%10; d2=X/10; d3=X/10; P0=d1; MSDelay(250); P0=d2; MSDelay(250); P0=d3; MSDelay(250); } Void MSDelay(unsigned int value) { unsigned char x,y; For(x=0;x<value;x++) For(y=0;y<1275;y++); }