- This topic has 4 replies, 2 voices, and was last updated 11 years, 2 months ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.
|
hi,im am building a digital thermometer with 8051 and am seeking help…rough ideas = inputs of thermistor and keypad to change max/min temp for alarm to go off,ADC,microcontroller (AT89C51),outputs of LED showing Fan goes on/off if temp goes over max/min and display with temp
Quite simple dude use LM35 because its o/p is linear and you can calibrate it easily.
For ADC you can use ADC0804 single channel 8 bit ADC.
For keypad even two switches are sufficient one for increment and another for decrement.
Instead of showing lights on/off on led use a relay, you will require relay driver circuit to drive the relay using which you can acutually turn on/off fan. check this link for relay driver circuit: http://www.dnatechindia.com/Tutorial/8051-Tutorial/Interfacing-Relay-to-Microcontroller.html
Thanks Amol Shah for your help….im a beginner to this so my knowledge is slim,any ideas on display to be used…..im also dreading the code,C ++ is best i believe?
You can use 16×2 alphanumeric display….its very simple to interface…check this link to know how to interface lcd to 8051 controller: http://www.dnatechindia.com/Tutorial/8051-Tutorial/Interfacing-LCD-to-8051.html
here is a link for code in C language: http://www.dnatechindia.com/Code-Library/C-Code-Library/LCD-INTERFACING-TO-8051-IN-8-BIT-MODE.html
and here is a link for code in assembly language: http://www.dnatechindia.com/Code-Library/8051-Assembly/LCD-Interfacing-To-8051-in-8-bit-mode.html
made attempt at code and isis