Quantcast
Viewing all articles
Browse latest Browse all 215

EMBEDDED SYSTEMS TUTORIAL 1: LIGHTING LEDS USING SIMPLE INCREMENT CONCEPTS


This post is focused to make people understand the concepts in Embedded systems and 8051 microcontroller family.In this AT89C52 microcontroller was used to light up the LED's using increment and loop concept.As you can see in the circuit diagram series of LED's was connected to the port 2 and port 3 of the Microcontroller and rest of the ports was left free as there is no need for it.Not only LED's you can use any component working  with 5V and here it was given as LED for easier understanding.The crystal used here was 6MHz and the resistors used value was 470 ohm.There is no need of reset pin so it was connected to the +5V power supply.The coding was written by means of C language and we have used Archimedes Software IDE 8051 for this coding.



PROGRAM:
  1. #include<stdio.h>
  2. #include<reg51.h> 
  3. unsigned char i; 
  4. int j; 
  5. void delay(void); 
  6. void main()
  7.      { 
  8.       i=0x00; 
  9.       while(++i); 
  10.         { 
  11.           P3=i; 
  12.           delay(); 
  13.           P2=~i; 
  14.         } 
  15.       while(0); 
  16.      } 
  17.   void delay() 
  18.       {
  19.         for(j=0;j<=15000;j++);
  20.      }

EXPLANATION:
This program was very simple and pretty useful for the beginners and gives you better understanding in increment and loop concepts.The first two lines was the inclusion of registry files and the 3,4 was assigning variables.We should use delay since to view output there should be some delay since speed of the Microcontroller was very high.There was one main program and one sub routine for delay.The i value was given as 0x00 which indicates that it was 16bit hexadecimal number.The value of 00 equals 0000 0000 that is the the combination of two 4 bit numbers given to the respective ports.In line 11 you can see that the value of i was given to the port 3 and delay was called.The inverse i values was given to the port 2 and the program was inside the While(0); loop for the continuous running of the program.Then comes the sub routine program for the delay generation since we are using 6MHz crystal the delay will be very less but noticeable.

Hope this post will be useful for the beginners and more posts with increased complexity yet to come in this blog.Dont forget to comeback and share your opinions with us.  
 

 
Image may be NSFW.
Clik here to view.

Viewing all articles
Browse latest Browse all 215

Trending Articles