LED interfacing is the first thing, one would try to do while getting started with any microcontroller. So here in this tutorial we are going to interface a LED with 8051 microcontroller, and will write a C Program to blink the LED. We have used a very popular microcontroller AT89S52, of 8051 family, by ATMEL.
Read more »LED Interfacing with 8051 Microcontroller
Category: Microcontrollers Tags:
- Login to post comments
Threading and Timers in Atmega328p
My motivation for this project was to minimize the usage of functions such as _delay_ms(), _delay_us() and their derivatives with some exceptions, like delays to control the LCD.
Delay pauses the whole program, so if one is using delay for 10 seconds everything will pause for those 10 seconds, therefore nothing can be done in those 10 seconds.
Read more »Category: Microcontrollers Tags:
- Login to post comments
DIY Spectro II
If you recall, when last we left our humble spectrophotometer, it was a shambling mess of stone-age technology. Now, its a shambling mess of information-age technology!
Read more »Category: Microcontrollers Tags:
- Login to post comments
USING AN AVR AS AN RFID TAG
Last time, I posted an ultra-simple “from scratch” RFID reader, which uses no application-specific components: just a Propeller microcontroller and a few passive components. This time, I tried the opposite: building an RFID tag using no application-specific parts.
Read more »Category: Microcontrollers Tags:
- Login to post comments
RFID BASED SECURED ACCESS SYSTEM USING 8051
RFID based Secured access system implemented on 8051 microcontroller . This is a very useful application of RFID and is very commonly used in institutes, offices, homes and so on. An RFID system consists of a reader device and a transponder. A transponder or tag has a unique serial number which is identified by the reader.
Read more »Category: Microcontrollers Tags:
- Login to post comments
LCD Interfacing with ATmega32 Microcontroller
The 16x2 will have 32 characters in total 16in 1st line and another 16 in 2nd line. Here one must understand that in each character there are 5x10=50 pixels so to display one character all 50 pixels must work together. But we need not to worry about that because there is another controller (HD44780) in the display unit which does the job of controlling the pixels.
Read more »Category: Microcontrollers Tags:
- Login to post comments
Automatic Staircase Light using ATmega32 Microcontroller
The circuit works on two conditions - one is presence of light in its location and second is presence of human being, only when these two conditions are met, the controller turns the backup light ON.
These two conditions are tested by two sensors one is LDR and other is Motion sensor module. The LDR senses the presence of light and Motion sensor detects the presence of a human being in its range.
Category: Microcontrollers Tags:
- Login to post comments