1. You can now buy finished microcontroller project from us, Check out the Store for the complete list of projects.
  2. Need a custom project, Send us some details about your project. So that we can quote the price for it.

8051 8051 based Taximeter 1.0

8051 based taximeter, the download contains the complete keil C code and the proteus simulation file

  1. sajiv jess
    8051 based taximeter, the download contains the complete keil C code and the proteus simulation file.

    Sponsored Links

    Circuit Diagram:
    taximeter.jpg

    Source code:

    Code (C):
    1. #define __MAIN
    2. #include "INC\\main.h"
    3. #undef    __MAIN
    4.  
    5.  
    6. // Main function ******************************
    7. void main (void)
    8. {
    9.  
    10. // --- Initialization ---
    11.     Interrupt_Initial();    // Interrupt initialization
    12.     LCD_Initial();            // LCD Initialization
    13.     x24c02_Init();            // 24c02 initialization
    14.     UserInit();                // User initialization
    15.       DelayXms(10);
    16.  
    17. // --- Operation ---
    18.     while(1)
    19.     {
    20.         System();            // System state response
    21.         Menu();                // Screen mode
    22.         KeyDisposal();        // Key processing
    23.         RealTimeClock();    // Real-Time Clock
    24.         StopTimer();        // Parking time
    25.     }
    26. }
    27.  
    28. //**************************************
    18supriya likes this.

Recent Reviews

  1. 18supriya
    18supriya
    1/5,
    Version: 1.0
    Can it works
Loading...