Tuesday, 18 June 2013

C source code for RFID module interface MCS51

In this time we want to share with you about RFID module that very useful to RF project this day. IN our sharing, we want give you what is RFID, show you schematic diagram RFID module interface microcontroller MSC51 AT89S52, and give you download sample C source code for RFID module interface MCS51.
What is RFID?
Maybe there are many people that not know yet about RFID now. RFID stand for Radio Frequency Identification. RFID is a technology that serves to detect and identify an object through the data transmitted via radio frequency. The system requires a minimum of a tag (which serves as a transponder), a reader (who serves as interrogator), and sebuan antenna (which serves as a coupling device).

One important element in RFID is a data transfer. Data transfer occurs when there is connection between the tag and reader, known as coupling through either an antenna mounted on the tag or reader as illustrated in the following figure 1 below:

Figure 1. The relationship between the tag, reader and antenna

Schematic Diagram RFID Module Interface MCS51 AT89S52
Figure 2. RFID Mode Interface AT89S52 Schematic Diagram
Example C Source Code RFID Module Interface MCS51 AT89S52

////////////////////////////////////////////////////////////
//Test SL025x
//MCS51 source code
////////////////////////////////////////////////////////////  
#include <reg52.h>
#include <string.h>

#define  true     1
#define  false    0

#define  OSC_FREQ        22118400L
#define  TIME0_10ms      65536L - OSC_FREQ/1200L

#define  BOUND4800       256 - 24
#define  BOUND9600       256 - 12
#define  BOUND14400      256 - 8
#define  BOUND19200      256 - 6
#define  BOUND28800      256 - 4
#define  BOUND38400      256 - 3
#define  BOUND57600      256 - 2
#define  BOUND115200     256 - 1

//IO definition
sbit     CARDIN    =    P1^0;                                                    

void InitializeSystem();                                                          
void SendCom(unsigned char *g_cCommand);                                          
void StartTime(unsigned int _MS);                                                 
void StopTime();
char ReadWriteUltralight(void);
char ReadWriteMifareStd(void);

//Command List, preamble + length + command code + data frame
unsigned char code SelectCard[3] =     {0xBA,0x02,0x01 };      
unsigned char code LoginSector0[11] =  {0xBA,0x0A,0x02,0x00,0xAA,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF}; 
unsigned char code LoginSector1[11] =  {0xBA,0x0A,0x02,0x01,0xAA,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
unsigned char code ReadBlock1[4]   =   {0xBA,0x03,0x03,0x01};                                    
unsigned char code WriteBlock1[20] =   {0xBA,0x13,0x04,0x01,0x00,0x11,0x22,0x33,0x44,0x55,0x66,0x77,0x88,0x99,0xAA,0xBB,0xCC,0xDD,0xEE,0xFF};                               
unsigned char code ReadValue[4]  =     {0xBA,0x03,0x05,0x05}; 
unsigned char code InitializeValue[8] ={0xBA,0x07,0x06,0x04,0x00,0x00,0x00,0x01};                               
unsigned char code IncrementValue[8] = {0xBA,0x07,0x08,0x04,0x00,0x00,0x00,0x20};                               
unsigned char code DecrementValue[8] = {0xBA,0x07,0x09,0x04,0x03,0x00,0x00,0x00};                                         
unsigned char code CopyValue[5] =      {0xBA,0x04,0x0A,0x04,0x05};
unsigned char code ReadULPage5[4] =    {0xBA,0x03,0x10,0x05};                                         
unsigned char code WriteULPage5[8] =   {0xBA,0x07,0x11,0x05,0x11,0x22,0x33,0x44};
unsigned char code TurnOnRedLed[4] =   {0xBA,0x03,0x40,0x01};    
unsigned char code TurnOffRedLed[4] =  {0xBA,0x03,0x40,0x00};            
                          
unsigned char g_ucReceBuf[21];                                     
unsigned char g_ucReceNum;                                         
unsigned char g_ucWatchTime;
unsigned char g_ucCardType;
char g_cStatus;                                      
char g_cErr;

bit   g_bReceOver;                                                
bit   g_bReceReady;
bit   g_bTimeOut;        
                                         
For more complete example C source for RFID Module Interface MCS51 AT89S52, please you take free download with click link below:

Make Programmable Line Follower Robot Based Microcontroller Atmega8535

Let we make programmable line follower robot based microcontroller Atmega8535 now. In here you will get more information how to make programmable line follower robot based microcontroller Atmega8535 likes know proximity sensor circuit diagram, microcontroller Atmega8535 circuit diagram, and also driver DC motor circuit diagram. In here we also give you source code Atmega8535 program that made from CodeVision AVR.

Part 1

In the part 1, we will show you all of schematic diagram of programmable line follower robot based microcontroller Atmega8535.
  • Proximity Sensor (Line Sensor)
Programmable line follower robot designed to follow black line on the floor, so we need sensor that can do it. In here we use proximity sensor or line sensor to do this work. Proximity sensor work to detect a black line with using LED and Photo-diodes component that will detect light or not light changing like in figure 1 below:


Figure 1. Work Principle of Proximity Sensor

We can make our self proximity sensor easily with follow proximity  sensor schematic diagram like in figure 2 below:

Figure 2. Proximity Sensor Schematic Diagram

  • Data Processing Microcontroller Atmega8535
To process data from sensor and also give command to driver DC motor circuit, we use microcontroller Atmega8535 to do this work. To know the schematic diagram of microcontroller  Atmega8535 as base in line follower robot, please see figure 3 below:


Figure 3. Data Processing Atmega8535 Schematic Diagram

  • Driver DC Motor using L298
To make line follower robot can rotate the dc motor, we need driver dc motor. In this design we use L298 as main component in driver dc motor. We not design driver motor dc using transistor component but using Integrated Circuit (IC) L298. Here is schematic diagram of driver DC motor using L298 like in figure 4 below:


Figure 4. Driver DC Motor using L298 Schematic Diagram

Part 2

In part 2, we will show you source code of programmable line follower robot based microcontroller Atmega8535. This is software part that you can make this program using CodeVision AVR software that you also can download freely from this blog. 

We must need source code program to make our line follower robot can "think" good to work follow the black line on the floor. Here is source code program for line follower robot that we are designed.

#include <mega8535.h> 
unsigned char sensor; 
void main(void) 
{ while (1) 
{ 
sensor=PINA; 
sensor&=0b00000011; 
switch(sensor) 
{ 
case 0b00000001: PORTC=0b00000001; break; // to the right
case 0b00000010: PORTC=0b00000100; break; // to the left
case 0b00000011: PORTC=0b00000101; break; // straight 
case 0b00000000: break;
 }
 }; 
}

Part 3

In part 3, we will show you mechanical design for programmable line follower robot based Atmega8535. And than we can test our line follower robot that we make. Figure 5 show mechanical design for line follower robot that we designed.

Figure 5. Mechanical Part of Line Follower Robot

After we are installing all part of line follower robot, now we can test it using a black line like in figure 6 below:

Figure 6. Line Follower Robot Track Line Test

Figure 7. Line Follower Robot Based Atmega8535

Active Antenna AA-7 HF/VHF/UHF, 3 to 3000 MHz


Construction:
The AA-7, which can be built from scratch or purchased in kit form from the supplier listed in the Parts List, was assembled on a printed circuit board, measuring 4 by 4-11/16 inches. A template for the pcb board is shown in fig. 2. You can either etch your own board from that template, or purchase the circuit board or the complete kit of parts (which includes the pcb and all parts, but not the enclosure). The kit comes with a 16-page kit instruction manual that gives step-by-step assembly instructions and contains additional information not covered in this article. Kit assembly time, working slowly and carefully, should take less than an hour. Most of the parts specidied in the Parts list are standard components and can be procured through conventional hobby electronics suppliers. However, some parts--J1, J2, S1, S2, and R5-- have particular physical mounting dimensions; the Printed Circuit Board is designed to accept these particular parts. In addition, Q1 and Q2 can be hard to find; however, it is possible to make substitutions provided that you can find a supplier. Suitable replacements for Q1 and Q2  re given in the Parts List. The telescoping whip antenna screw-mounts to the board; the screw provides contact between the printed circuit board traces and the antenna. To save time and trouble locating and ordering hard-to-find parts, a Special Parts Kit is also offered by the supplier listed in the Parts List. A parts placement (layout) diagram for the AA-7's printed circuit board is shown in figure 3. When assembling the circuit, be especially careful that transistors Q1 and Q2, and the electrolytic capacitor C4, are oriented as shown.
Although not shown in the schematic (Fig. 1) or the layout (Fig. 3) diagrams, an optional led power indicator can be added to the circuit. Adding a power indicator to the circuit allows you to tell at a glance if the circuit is on; leaving the circuit on, even though the AA-7 draws only about 0.7 mA, will eventually discharge the battery. Of coutse, adding an led will increase the current drain to by about 7 mA, but the red glow makes it obvious when the unit is on. If you decide to include the indicator in your project, power for the indicator can be easily taken from the switched 9-volt DC terminal of S2 (center terminal, right side, looking at the top of S2). Simply connect the positive voltage to the anode (longer wire) of the led and connect her cathode lead through a current limiting resistor of about 1000 ohm to a ground point on the printed circuit board, or as the author did fromt the frame of R5. Mount the led at any convenient point near the switch. Although not supplied with the kit, a custom plastic enclosure (with front and back panels) or a regular 'hobby' case of some sorts, and knobs for the switches and gain control is offered in the Parts list. The enclosure comes pre-drilled and silk-screened with the appropriate legends for all the circuit controls and connecteors, but is not equipped with holes for the whip antenna or the led (if you include


Parts List and other components:
Semiconductors:
Q1 = MFE201, SK3991, or NTE454. N-Channel, dual-gate MOSFET (see text)
Q2 = 2SC2498, 2SC2570, 2N5179, SK9139, or NTE10. NPN VHF/UHF silicon transistor (see text)
Note: If you use the NTE107 as a replacement, make sure to insert it correctly
into the pcb. The orientation is different than as shown on the parts layout
diagram. (e-c-b seen frontview for NTE107). See this Data Sheet
Resistors:
All Resistors are 5%, 1/4-watt
R1 = 1 Mega Ohm
R2 = 220K
R3,R6 = 100K
R4 = 100 ohm
R5 = 10K potentiometer, (pc mount)
Capacitors:
C1,C2,C5,C6 = 0.01μF, ceramic disc
C3 = 100pF ceramic disc
C4 = 4.7 to 10μF, 16WVDC, radial lead electrolytic

Auto-Fan, for automatic temperature control



Th1, the 50K thermistor, is a standard type. Mine was a bar or rectangular looking thingy. Available from Tandy/Radio-Shack.  Almost any type will do. I experimented with different models from 22K to 100K and all worked fine after replacing the trimmer pot. The one used in the above circuit diagram was a 50K model made by Fenwal (#197-503LAG-A01). This 50K was measured at exactly 25 °C and with 10% tolerance. The resistance increases as the surrounding temperature decreases. Tolerance for my application (cooling a large powersupply coolrib) is 10%. Another name for this thing is 'NTC'. NTC stands for "Negative
Temperature Coefficient" which means when the surrounding temperature decreases the resistance of this thermistor will increase.  I replaced my thermistor for a 60K hermetically sealed glass type since the environment for my application may contain corrosive particles which may affect performance on a future date. P1 is a regular Bourns trimmer potentiometer and adjusts a wide range of temperatures for this circuit. I used the 10-turn type for a bit finer adjustment but the regular type may work for your application.
R1 is a 'security' resistor just in case the trimmer pot P1 is adjusted all the way to '0' ohms. At which time the thermistor would get the full 12 volt and it will get so hot that it puts blisters on your fingers... :-)
R3 feeds a bit of hysteresis back into the op-amp to eliminate relay 'chatter' when the temperature of the thermistor reaches its threshold point. Depending on your application and the type you use for Q1 and Re1, start with 330K or so and adjust its value downwards until your satisfied. The value of 150K shown in the diagram worked for me. Decreasing the value of R2 means more hysteresis, just don't use more then necessary. Or temporarily use a trimmer pot and read off the value. 120K worked for me. Transistor Q1 can be a 2N2222(A), 2N3904, NTE123A, ECG123A, etc. Not critical at all. It acts only as a switch for the relay so almost any type will work, as long as it can provide the current needed to activate the relay's coil. D1, the 1N4148, acts as a spark arrestor when the contacts of the relay open and eliminates false triggering. For my application the 1N4148 was good enough since the tiny relay I used was only 1 amp. However, you can use a large variety of diodes here, my next choice would be a regular purpose 1N4001 or something and should be used if your relay type can handle more then 1 amp

Saturday, 21 July 2012

Electrical And Electronics Projects by Embedded and MicroController Systems

Electrical And Electronics Projects by Embedded and MicroController Systems

1. Fabrication of Solar powered tea leaf cutting machine
2. Electricity and Water Pumping System using Wind Mill
3. Fabrication of Solar Seed Dryer
4. Fabrication of solar irrigation System
5. D & F of Gas Converted Power Sprayer
6. Solar Powered Agricultural Water Pumping System with Auto Tracking
7. Fabrication of Solar Seeds Sprayer
8. Automatic bottle washing machine
9. Automatic Water level Sensing Crane
10. Fabrication of Maize de-Husker
11. Paddy Harvester
12. Groundnut Harvester
13. Groundnut Thruster
14. Chisel Plough
15. Coconut tree Sprayer
16. Fabrication of Solar seed Dryer with Auto Tracking
17. Fabrication of Tomato grader
18. Fabrication of Hydraulic 3 axis Modern Trailer
19. Fabrication of vegetable slicing Machine
20. Automatic Moisture and Light Controlling System for Garden
21. Automatic Water Tape Controlling System
22. Automatic Packing control Machine
23. Fabrication of Agricultural Motor Pump Running using Solar Power
24. Fabrication of Solar Agro Sprayer
25. Automatic Vegetable (or) Lemon Cutting machine
26. Water Pumping system using Wind Power
27. Fabrication of Seeds Sprayer
28. Fabrication of rotary Kaller
--------------------------------------------------------------------------------
1. A robot system for fire fighting in tunnels (IEEE 2005)
2. SMS based automatic two wheeler locking system
3. The development of intelligent home security robot (IEEE 2005)
4. GPS based vehicle root tracking system
5. Design and development of voice / Tele operated intelligent mobile robot (IEEE 1997)
6. Automatic Steering Control robot
7. An intelligent mobile robot navigation technique using RFID Technology (IEEE 2008)
8. Fabrication of GPS Robot
9. GSM mobile phone based automobile security system (IEEE 2000)
10. Automatic alcohol sensing robot
11. Artificial Intelligent based Solar Vehicle
12. Robot for military application
13. GSM based automatic vehicle accident information system
14. Material Dimensions Analyzing Robot
15. Three axis modern trailer
16. SMS controlled video analyzing robot
17. PLC based pick and place Robot
18. Fire Fighting Robot
19. Automatic car overtaking system
20. Path finding Robot
21. Fully Automated Track Guided Vehicle (ATGV)
22. Automatic Ball Printing Robot
23. Industrial temperature analyzing Robot
24. SMS controlled solar vehicle
25. Robot controlled Vacuum Cleaner
26. Automatic fire fighting visitor guided vehicle
27. Robot Hand (Model)
28. SMS controlled pick and place robot
29. Remote controlled bomb detecting robot
30. Automatic Arc Welding Robot
31. Fabrication of Computer Interfaced Robot
32. Automatic sensor based wall painting Robot
33. Remote operated weapons robot
34. Automatic pick and place paint spraying robot
35. Automatic vehicle accident place finding system by using GPS technology
36. Automatic Visitor Guided Robot
37. Sensor Operated Automatic Punching robot
38. Aero plane Controlling System (Flying Model)
39. Remote Controlled Video Analyzing Robot
40. Mini Robot Car for industrial application
41. Remote controlled air craft (Flying Model)
42. Mini Robot Spray Painting System
43. Remote controlled material handling robot
44. Pick and Place jumping robot with remote control
45. Video analyzing remote controlled vacuum cleaning robot
46. Automatic Scrap collecting Robot
47. SMS controlled moving robot
48. PLC based pick and place Robot
49. Cell phone controlled Solar Vehicle
50. Man less defense
51. Robot manipulator
52. Remote controlled paint spraying Robot
53. Mini Robot Car
54. Yarn detector and Braking Controlling Robot
55. Industrial temperature analyzing Robot
56. Human Eye Robot (Model)
57. Robot Excavator (Model)
58. Sensor Operated Path Finding Robot (Way Searching)
59. Automatic Magnetic Accident preventer for Train
60. Cell Phone Controlled Video Analyzing Robot
61. Robot Controlled Vacuum Cleaner
62. Intelligent Way Searching Pick and Place Robot
63. Cell Phone Controlled jumping Robot
64. Voice Controlled Material handling vehicle
65. PC based wireless Pick and Place Robot
66. Automatic Robot Over speed controlling system for People Zone
67. Artificial Intelligent Based Automatic Path finding [censored] Video Analyzing Robot
68. PC based pick and place sequence robot
69. Automatic Paint spraying Robot
70. Automatic Vehicle Over speed controlling system for School Zone
71. Automatic vehicle Accident Information System
72. AI Based Fire fighting AGV
73. CNC material handling robot
74. Automatic paint spraying Conveyer Operated Robot Hand Model
75. Automated Guided Vehicle (AGV)
76. Pick and Place Robot with Remote Control
77. Wire Controlled Pick and Place Moving Robot
78. Voice Controlled Robot
79. Intelligent Robot
80. Telephone Operated Robot
81. Computer Interfaced Stationery Robot
82. Pneumatic Four Axis Material Handling Robot
83. Visitor guided with material handling Robot
84. Automatic railway track crack detecting Vehicle
85. Digital locking system (Password) for moving robot
86. Unaided Guided Vehicle(UGV)
87. Sand Collecting Vehicle
88. Automatic Fire Sensing and fighting Robot
89. The development of intelligent home security robot (IEEE 2005)
90. Video analyzing remote controlled vacuum cleaning robot
91. SMS Based automatic vehicle accident information system
92. Automatic Scrap collecting Robot
93. A robot system for fire fighting in tunnels (IEEE 2005)
94. Remote controlled material handling equipment
95. SMS controlled moving robot
96. GPS based vehicle root tracking system
97. Design and development of voice / Tele operated intelligent mobile robot (IEEE 1997)
98. Cell phone controlled Solar Vehicle
99. Fabrication of road curve finding robot
100. Fabrication of mindless defense
101. Industrial temperature analyzing Robot
--------------------------------------------------------------------------------
16_Channel water level controller
3phase monitor
4 digital object counter
4 2 printer sharers
8-Channel water level controller
8 digit pulse counter
8 channel IR remote control
--------------------------------------------------------------------------------
A GPS map digitization program
Ac and Dc motor control system
Accident alertness in vehicles
Accident identification system
Accident identification with auto dialer
Adaptive differential pulse code modulation a (APCM)
Adaptive lighting system for automobiles
Addressable remote transmitter through a communication
Advance encryption standard using micro control
Advancer fm power line intercom
Advertising display using LED & LCD
Agricultural Plant watering systems
Air & fuel ratio control system for fumace
Air leakage detection based on pressure sensor
Air pollution monitor
Air velocity monitor
Air fuel ration control system for fumace
Altimeter & barometer
An I2C Network protocol for environmental monitoring
Analysis of slip power recovery scheme
Anesthesia control system for medical application
Anthena circuit design for RF ID Applications
Apartment multi channel fuse blown indicator & annunciation
Apartment security system
Artificial intelligent embedded line tracking follower robot
ATM card
Attendance recorder
Auto path finder robotic car
Auto stop motion and annunciate for knitting mills
Automated pump tester
Automatic traffic light system
Automatic bottle filing system
Automatic busfair system
Automatic car parking controller using RF
Automatic coil winding machine and controller
Automatic digital time switch
Automatic dim dipper programmable ON/OFF Timer controller
Automatic dim Dipper system
Automatic Door opening system
Automatic drainage system for industrial pipe lines
Automatic drilling system
Automatic dyeing machine
Automatic Electric billing system
Automatic fence controller
Automatic frequency counter
Automatic guided vehicle
Automatic humidity control for refrigerator
Automatic industrial operator
Automatic industrial drilling machine
Automatic irrigation system with wireless transmission
Automatic jogging, breaking, plugging for motors
Automatic lamination machine
Automatic load controller
__________________
--------------------------------------------------------------------------------
Automatic packing machine
Automatic panel system
Automatic panels for 3 phase motors
Automatic pattern cutting m/c in garments
Automatic phase changer
Automatic phase changer with line voltage measurement
Automatic phase selector
Automatic pumping system for vehicles
Automatic railway gate controller system
Automatic room control system
Automatic shutter control system with intelligent
security system
Automatic solar tracking system
Automatic stator voltage control
Automatic street light on-off controller
Automatic ticketing machine
Automatic traffic light controller
Automatic washbasin
Automatic weighing bridge
Automatic wheel alignment robot
Automation system using smartcard by
implementing industry i2c bus
Automobile performance analyzer
Automobile tracking system
AVR for alternators
Bank card design
Bank locker security system with SMS mobile alert
Battery monitoring system
Blood dripping system
Body temperature scanning system
Boiler controller
Building automation system
Calendar day date time month year
Calibration of proximity sensor
Caller -id
--------------------------------------------------------------------------------
Data logger based on Rs-232 serial
communications
Data logger with graphics display
DC motor control using H-bridge
DC motor speed controlled using remote
DC ibus RS-484 home network with maximum of
64 terminals
Decoding infrared remote control
Depth measurement based on LVDT
Desktop security system
Detection of illegal of wireless transmission
Detection of failed distribution transformer
Digital anemometer
Clock based on real time clock (RTC) IC
Code locking system
Countdown timer
Data sensor error accusation system
Data sensor error accusation and RF-433 MHz
wireless Data logging
Frequency meter
Digital IC tester
Digital odometer
Digital panel system
Digital storage tachometer
Taxi meter
Thermometers
Visitor counter
Weight analyzer for weight Bridge
Wind anemometer
Direct torque measurement
Dish antenna rotating
Dish antenna positioning system using telephone
Dish Positioned with frequency tracking
Dish positioned using wiper motor
Distributed control system
Distributed input for microcontroller
Distributed output system
Door security system
Drainage control system for process plant
Drill speed controller
DTMF generation using microcontroller
DTMF implementation of GSM mobile phone to
control electrical appliances
DTMF tone generator
DTMF implementation of mobile phone to control
security appliance
EB SIM card
ECG data acquisition through IR
Electrical power generation using foot step
Electricity theft identification
Electronic conductor
Electronic circuit breaker
Electronic gardener
Electronic voting machine
Embedded car dash board
Embedded intelligent security system
Embedded lift controller
Embedded microcontroller based boiler
temperature controller
Employee identification & security system and
Finger print sensor
Energy billing through main line
Energy meter (Digital)
Energy meter with prepaid card
Energy saver by using pressure controller
EPABX system
EPROM programmer
Fan speed controller based on temperature
Father touch variable power supply
Fax guard and multi event controller
Finger print recognition
Fir programmable timer for dying factory
--------------------------------------------------------------------------------
Fire alarm system (6 channels)
Fire monitors using micro controller
Flow control system
Frequency monitor and controller with single
Phase preventer
Frequency monitor and control
Fuel gas detection robot in remote
Function generator with annunciate
Fuzzy logic based flow control
Fuzzy logic based heat exchanger with simulation
result
Generator auto OFF system with Oil change
indicator
Glass cutting machine
GPS Based automobile performance analyzer
GPS based train/bus/Aircraft collision avoidance
GPS based vehicle- tricking system
GPS based velocity and speed monitor
GPS Positioning system using 5 transmitters
Home automation system
GPS based failure identification system for
Intelligent vehicles
GPS based real time identification of tire road
friction
Hack saw controller
Hardware lock
Heart beat monitor
High intelligent voting machine
High precision digital timer
High speed digital interruption counter
Home alarm system
Home appliance control through telephone
Home automation system
IR car detector for changing lanes
HV & LV drip through motor controller
I2c based High security data transmition
--------------------------------------------------------------------------------
I2c based running message system
I2c based security code lock
I2c based sequential logic system
I2c based temperature recording system
I2c based weather station recorder
I2c based wind speed recorder
I2c EPROM programmers
I2c master - slave protocol implementation
IC tester
IC engine monitoring system
Implementation of I2c bus
Implementation of controller area network (CAN)
using Can controller
Implementation of I2c communication
Implementation of rs-232 protocol to communicate
mc & pc
Implementation boot loader firmware of ROM
Fewer microcontrollers
implementing debit cards
Implementating fir-IIR filter using microcontroller
Incubator maintenance system
Incubator Monitor & controller system
Induction motor speed monitoring & control using
PWM technique
Industrial boiler/fumace controller
industrial controllers
Industrial boiler/fumace controller
Industrial environmental monitoring system
Industrial fire alarm & message announcing
system
industrial high temperature monitor & fumaces
controller
Industrial programmable timer
Industrial safety monitors system
Infrared USART for microcontroller
Input water sensing and overhead tank filling
system
Intelligent automotive ignition system
Intelligent conveyor flow monitor & controller
Intelligent conveyor flow monitor & controller with
robotic arms
Intelligent dish antenna positioning system
Intelligent electronic voting machine
Intelligent fire monitors & extinguish robot
Intelligent traffic light controller
Interfacing thermal sensor in microcontroller
Interrupt counters [censored] burglar alarm
IR adaptor for I2c bus
IR data analyzer
IR light dimmer
Irregular surface area measuring instrument
Irrigation control system
Irrigation control system with power line
communication system
Lab automation with real time clock interface
Laser security system with wireless transmission
Level sensor with 4-20mA O/P
Lift control system
lift control system with position indication
Light brightness control depends upon sunlight
intensity
Liquid level monitor
Load management using parallel operation of
transformers
Locker security system
Long distance communication for I2c EPROM
devices
Long distance communication using IR
MUX meter
Machine control & fault recognition through
telephone
Mark announcement system using telephone
Maximum demand control
Message transfer system through telephone
Meter making system with Pc interface
Micro controller trainer kit
Micro file
Micro machined Accelero meter
Microchip development kit
Microchip TCP/IP stack
Micro computer based programmable individual
Phase current limiter for 3-phase electrical system
Microcontroller based digital auto mobile
dashboard
Microcontroller based wireless data acquisition
system
Using USART and RS-232 Protocol
Microcontroller Communication through USART
Microcontroller controlled demand power meter
Microprocessor trainer system
Mileage meter
Mind switch
Mini data logger
Mini exchange with main intercom
Mini robot car
Mobile alarm system based on GSM & GPS
Mobile assets tracking device
Modern digital clock
Modern lift system
Modular IR remote control for industrial
automation
Monitoring system for UPS
Motion recorder & playback
Motor direction sensing, speed measurement
system
Motor monitoring system
Motor monitoring system (V, I, F, TEMP, PF)
--------------------------------------------------------------------------------
Mark announcement system using telephone
Maximum demand control
Message transfer system through telephone
Meter making system with Pc interface
Micro controller trainer kit
Micro file
Micro machined Accelero meter
Microchip development kit
Microchip TCP/IP stack
Micro computer based programmable individual
Phase current limiter for 3-phase electrical system
Microcontroller based digital auto mobile
dashboard
Microcontroller based wireless data acquisition
system
Using USART and RS-232 Protocol
Microcontroller Communication through USART
Microcontroller controlled demand power meter
Microprocessor trainer system
Mileage meter
Mind switch
Mini data logger
Mini exchange with main intercom
Mini robot car
Mobile alarm system based on GSM & GPS
Mobile assets tracking device
Modern digital clock
Modern lift system
Modular IR remote control for industrial
automation
Monitoring system for UPS
Motion recorder & playback
Motor direction sensing, speed measurement
system
Motor monitoring system
Motor monitoring system (V, I, F, TEMP, PF)
--------------------------------------------------------------------------------
Motor overheat presenter
Motor position control for air flow flaps
Motor speed control through power line
Motor speed control using IR sensor
motor Sped monitor & controller interface
Motor speed reverse, jogging, braking & plugging
system
Moving message 16 character display
Moving message display
Multi channel call bell
Multi channel electrical appliances control system
Multi channel fire alarm
Multi channel programmable timer
Multi frequency (32Mhz-1Hz) generator
Multi function frequency counters
Multi voltage power supply
Multi-channel temperature monitor & controller
Multipurpose digital counter
Multi variable controller
Multi variable parameter interfacing with can bus
Multi-zone temperature monitoring
Networking based on IR
Noise & vibration system
Non-Gps outdoor tracking system
Object counter
Object detection using ultrasonic waves
Office automation system
Oil-tank level indicator
On-line measurement of spinning frame
On-line vehicle tracking using GPS& GSM
On-line weighing balance
On-load tap-change for power transformer
Optical pyrometer
Organization security system
Over Speed preventer for vehicles
Paint spraying robot
--------------------------------------------------------------------------------
Paper counting system
Patient treatment monitoring system
Stepper motor controller
RF-434MHz wireless robot
Printer communication through power line
PC to mobile m2 bus communication
PC to PC communication through LASER/IR
Person roaming detector
Personal ecology widget
Personal safety and tracking through GPS
Petrol cards
PH measurement and control system
Pigment adding system using image processing
Plate cutting machine
PLC based motor protection system
Portable recording system for monitoring vehicle
speeds
Position control system
Power booster for IC engine
Power factor monitor and control
Power monitoring system for motors
Power room monitor with data logger
Precise yam thickness measurement
Precision temperature sensing using RTD
Pre-paid cable card system
Pre-paid card for call taxi
pre-paid card for telephone
Pressure controller and monitor
Pressure transmitter
Pressure measurement and monitoring system
Priority for emergency vehicles in traffic signals
Private pager networks
Production counter
Production event monitor and controller
Programmable automatic street light controller
Programmable college timer
Programmable digital clock
Programmable hopper controller
Programmable logic controller (PLC)
Programmable multichannel water level controller
Programmable number lock
Programmable on-off timer for industries
Programmable outgoing bearing system for
telephones
Programmable quiz master
Programmable sine wave generator
Programmable single phase motor over load
Prevent or
Programmable wire feeder for welding robots
Protocol converter
Pulse rate monitoring system
Quality control system
Radiometric sensor using microcontroller
Railway helpline display
Range detection system using ultrasonic range
detection module & pic
Refrigeration using remote modern interface
Remote control using GSM
Remote cable disconnection system
Remote control for home appliance
Remote control for using modern
Remote control using radio
Remote controller motor operation
Remote data logging using current loop modems
Remote dish positioning system
Remote motor starter (star-delta)
Remote motor, plugging, forwarding jogging
Remote mouse controller automation
Remote rpm data logger
Remote security system
Respiration monitor
RF signal generator
RF wireless multi channel electrical appliances
controls system
RF-434MHz data linking between wireless
keyboards
Microcomputer messaging system
RF-434MHz data linking between wireless
microcomputer messaging system
Robot operated through voice
Room temperature monitor & A/C controller
RS 485 extender
Satellite tracking system
Scroll board coasting system
Scrolling message display
Secured data acquisition system
Security code locking system
Security recording station system
Security door man
Security recording station Cards
Security system for remote Access using
Telephone line
Security system using smart card
Security system with auto dialer and remote
monitor
Sensor less control for brush less dc monitor
Sequential control system for conveyor system
Servo motor speed control using IR remote
servo motor speed controller with feedback
Shutter control system with intelligent security
Signal plotter based on graphic led
shine wave generator
single phase preventer with low voltage cutoff
Single Supply temperature monitoring using
thermocouple
single supply temperature monitoring using
thruster
Smart card
--------------------------------------------------------------------------------
Smart card based application
Smart card security system using i2c devices
Smart card with i2c EPROM
Smart networking
Smoke detector
Sms alerting system using mobile phone for bank
security system
Sms based on - off control
Sms controlled home appliances
Sms controlled load
Sms through lad line
Soft starter with over load tripping
Soil moisture controller
Solar panel tracking system
Solar tracking and data logger
Solar tacking system
Sound level meter
Space spectrum modulation
Speech security
Speed control for dc shunt motor
Speed control of motor through Sms
Speed control system for three phase induction
motor
Static war compensation
Stepper motor controlled by remote control
Stepper motor control
Stepper motor speed controlled through telephone
line
Street light on/off controller
Student mark announcement through telephone
line
Student result announcement system through
telephone line
Sugar bag counter
Surface level monitor instrument
Synchronization of EB power supply & generator
Tachometer
Tele monitoring patient through internet
Telephone account recorder
Telephone answering machine
Telephone call meter
Telephone call meter witty call over alarm
Telephone controlled electrical appliances
Telephone interface security system
Telephone line monitor
Telephone operated machine
Telephone operated motor control
Telephone operated remote robot
Telephone operated temperature control system
with remote control
Telephone switching
Temperature & speed control system
Temperature control with mains transmission
Temperature controller using PIC
Temperature data logger
Temperature monitor and control
Temperature monitoring and recording device
Temperature monitoring using watch dog timer
Tension control system
Theft alarm
Thermometer monitor & announciator
Three phase induction motor recording device
Three phase motor control using remote/tale
control
Thumb recognition system
Tilt measurement using micro control
Token display for bank with speech
Token number system display
Traffic light priority control for emergency vehicles
Traffic controls system
Traffic priority for ambulance
Transformer protection system
Transistor leads identifier [censored] tester
Transmission sensor for remote car starter
True rms voltage & current measurement with lcd
interface
Tsr based multi channel motor speed monitor
Tyre Pressure monitoring system
Ultrasonic alarm for visually Impaired
Ultrasonic distance meter
Ultrasonic level monitor
Ultrasonic vibration detector
Universal flash micro controller programmer
Universal function generator
Universal timer
UPS monitoring system
UPS security Key
V/F Control for motor
Vacuum cleaner
Vector control of ac induction motor
Vehicle location system
Vehicle speed storage system
Vehicle speed, temperature, total distance
traveling
and fair monitoring system
Vehicle tracking system
Vehicle speed indicator
Vibration sensing system
Video signal transmitter
Voice changer
Voice Coding and Decoding
Voice dialer for phone
Voice operated home appliance control system
Voice operated motor controller
Voice operated motor controller and speed
monitor
Voice operated robot
Voice operated temperature controller
--------------------------------------------------------------------------------
Voice recording system
Voltage-current, speed monitor through power line
Voltage monitor and control
Wall thickness measuring system for pipes &
plates
Water level controller
Weather monitoring
Weather reporter
Weighing balance
Weighing balance system
Weighing machine system
Weight & height measurement with printer facility
White cane with ultrasonic sensor for distance
measurement
White card reader detector
wind mill control system
Wireless communication from PC to UC
Wireless communication from PC to PC
Wire position sensor encoder and distance
measurement
Wireless dish antenna tracking system
Wireless door control system
Wireless energy transmitter
Wireless home automation using PIC
Wireless home security system
Wireless keypad
Wireless lift controller
Wireless modem
Wireless motor speed controller using FM
Wireless printer by using Laser beams
Wireless security system with two transmitters
Wireless smart card
Wireless voting machine
Wireless water level controller
Yam lee strength measurement
Yam thickness measurement system
 microcontroller based projects

a. Mobile phone (DTMF) controlled electrical device switching
b. Automatic advanced Railway gate Control System.
c. Digital Realtime Clock Implementation with Microcontroller and LCD.
d. Industrial conveyer belt object counting system.
e. Intelligent High Power LED Street light Control System.
f. Digital Frequency Meter with LCD Display
g. IR Remote Controlled Realtime Clock with LCD display
h. Transformer realtime temperature monitoring and thermal Overload protection
i. Digital RPM Indicator for Electrical Motor with Over speed alarm Indicator
j. Infrared Remote based Electrical Device Control with Triac and Optically Isolated Diac
k. Infrared Remote controlled High Voltage device switching with Electromagnetic Relay
l. IR TV remote controlled DC Motor speed controller with password protection
m. IR TV remote controlled Stepper Motor controller with password protection
n. LDR based automatic lamp illumination controller with High Power/Intensity LED lighting (PWM control)
o. Optically Isolated Fuse blown Indicator with Sound and light indicator
p. High Voltage Fuse blown Indicator with Display on Computer/PC
q. Pulse Width Modulation (PWM) Speed Control of a DC Motor
r. IR LED and LDR based Heartbeat Monitor with display on LCD.
s. IR LED and LDR baaed Heartbeat Monitor with display on Computer/PC.
t. Temperature Controlled Fan (DC Motor based with PWM).
u. Realtime Car battery monitoring and low voltage alert system.
v. Automatic room light intensity based window blinds control system.
w. Temperature based ceiling fan speed control system (230v AC Motor).
x. Automatic Irrigation water supply monitoring and control system.
y. Infrared remote controlled garage door control system.
z. Automatic washing machine motor control system.
aa. Vehicle inside and outside temperature monitoring system.
bb. Wireless split AC blower and compressor control system.
cc. Industrial and Home Security System based projects using various sensors like smoke, Fire, GAS, Temperature, PIR, IR, RF etc.
dd. Digital RPM indicator on LCD display (Used in latest Bikes and Cars etc.)
ee. GPS speedo meter with Over speed alert system.
ff. GPS and microcontroller based location (latitude and longitude) display On lcd display
gg. Microcontroller based GPS Clock. It maintains accurate time based on the signals received from the satellites.
hh. GPS and Microcontroller based Geographical location Identification System.
ii. Digital Thermostat with LCD Temperature Display.
jj. Embedded Realtime Clock based Industrial Devices Control System.
kk. GPS Based Train/Bus Station Indication System with display on LCD.
ll. GPS based Speedo meter (Used in Boats,Ships, Aero planes etc).
mm. Microcontroller based digital Over voltage Protection system for industrial loads.
nn. Radio Frequency (RF 433 MHz) based Industrial Wireless Device Control System.
oo. Microcontroller based advanced automatic city street control system.
pp. Industrial Advanced Temperature monitoring and Control System.
qq. Microcontrolle based water level monitoring and control system.
rr. Microcontroller based Digital Alpha-numeric message scrolling Display.
ss. Automatic intrusion Alarm/Alert System.
tt. Digital Energy Meter LCD display.
uu. Radio Frequency based Realtime Child monitoring and alarm system.
vv. Realtime burglar alarm system using PIR Sensor (Passive Infrared Sensor)

Wednesday, 18 July 2012

Automatic Room Ligtht Controller and Visitors Counter with IR sensor

Automatic Room light controller Project is about controlling the Room light by checking weather person is in room or not.In this Project we are using IR sensor and Micro controller AT89S52 .When the Person enters in the room the Ir sensor interrupts the Micro controller and micro controller Checks the Count value and display it on LCD . If the count value is greater than Zero the room light will be switched on .Triac Switch is used for switching the AC Bulb.


COMPONENTS: 
  • AT89S52 CONTROLLER
  • LCD DISPLAY
  • TRIAC
  • IR SENSOR
  • TINY2313
  • IR RECEIVER(TSOP1738)
  •     
  • Download Full Document 
  •  http://www.docstoc.com/docs/124085259/AUTOMATIC%20ROOM%20LIGHT%20CONTROLLER%20WITH%20VISITOR%20COUNTER%20USING%20IR%20SENSOR

Make your own AM Radio

Although radios are common enough and cheap, why not make your own from a few readily available components? For example, the design shown in Fig is uncomplicated thanks to the two integrated circuits, IC1 and IC2, and it will receive radio stations transmitting amplitude modulated (AM) radio frequencies, delivering your selection to a small loudspeaker.
Circuit Details :
The central component for the first building block is integrated circuit IC1, a ‘radio on a chip’. Essentially, its purpose is to amplify the small volt- age generated across the tuned circuit comprising the LC combination; that is, variable tuning capacitor VC1 in parallel with inductor L1. When the radio is ‘tuned in’ to a station by adjusting VC1, a small alter- nating voltage is generated across the tuned circuit. This is processed by the rest of the circuit to extract the informa- tion carried by this carrier wave. IC1 requires a 1.5V supply voltage, which is provided by transistor TR1, resistor R1 and potentiometer VR1, used as a variable resistor. Adjust- ment of VR1 alters the supply voltage and determines the sensitivity of the circuit. Capacitor C2 couples the signal from the radio frequency amplifier and detector stage to the second building block, a low-power audio amplifier based on IC2, which powers a small loudspeaker, LS1. Potentiometer VR2 acts as a volume control.

Am radio circuit
Am radio circuit

Getting started with microcontrollers

What you will need to program microcontroller
In the late 1970s and early 1980s, the cost of equipment for developing microcontroller-based systems was beyond the reach of most small companies. Now, however, there are many high school students already developing exciting PIC projects.
To get started you will need the following equipment and documentation:
• One or more PIC16C84s or PIC16F84s (the ’83 devices will also suffice)
• A Personal Computer running Windows 3.1 or Windows ’95.
• A copy of the latest MPLAB software available free of charge from Microchip Technology Inc.
• PIC microcontroller data sheets and application notes available free of charge from Microchip Technology Inc.
• A PICStart-Plus programmer. Programmers available from third party manufacturerswhich support the PIC devices will also be suitable.
• A circuit breadboard or similar means of circuit construction.
• A 5V DC power supply.
• Some light emitting diodes (LEDs), resistors and some 32kHz crystals.
• Test equipment such as a digital multimeter and an oscilloscope (not essential).
What makes a microcontroller useful?
PIC microcontroller
A microcontroller (or microprocessor) can be viewed as a set of digital logic circuits integrated on a single silicon ‘chip’ whose connections and behaviour can be specified and later altered when required, by the program in its memory. The great advantage of this, is that in order to change the circuit’s structure and operation, all that is needed is a change in the program – very little, if any, circuit hardware modifications are necessary. An alternative view is that a microcontroller is a state machine whose logic states are defined by its program. A microprocessor is the Central Processing Unit (CPU) of a computer and a microcontroller can be regarded as a microprocessor designed specifically for use in applications where machines such as automobile engines or washing machines are to be controlled. Often the distinction between microprocessors and microcontrollers is quite blurred, as there is considerable overlap these days in the classification of different types of computing devices. A typical microprocessor is a device used in workstation computers, whereas a microcontroller is usually less powerful and has special features such as PWM (pulse width modulation) and timer devices integrated on the IC specifically for use in the applications mentioned above.
Simplified operation of a microcontroller
Humans perform arithmetic using a decimal or base ten numbering system. Computers use a base two system with the digits 0 and 1 and, because there are only two possibilities, they are termed binary digits or bits for short. There are many ways of representing a binary set of states,
for example
• a mechanical or electronic switch with two states — on or off
• opposite directions of current or fluid flow
• two different pressures
• a positive and a zero voltage.
 
In digital electronic circuits, the last choice is the most natural. Circuits implemented using TTL (Transistor-Transistor Logic) technology use 5V to represent the binary value 1 and a zero voltage to represent 0. The circuits discussed in this book, although not TTL circuits, will use the approximately the same representation. To provide some robustness to the representation, voltages above 3.5V will be taken to represent a logical 1 and those below 1.5V to represent a logical 0. Readers new to the subject of digital electronics are urged to consult one of the many excellent books available on the subject,
A simple microcontroller consists of the following modules:
• An Arithmetic Logic Unit (ALU)
• One or more working registers (called accumulators in the past) for temporary storage during computations. A register is a small block of memory, often the size of a byte, where data is stored.
• Program memory (ROM) and data memory (RAM).
• A program counter.
• An instruction register with instruction decoder.
• The control unit.
• A stack.
 
The ALU is responsible for performing all arithmetic operations such as addition, subtraction and Boolean logical operations, including exclusive-or and bit shifting. Multiplication and division is usually accomplished by repeated use of addition or subtraction, but some devices (such as the PIC17CXX series) have hardware multipliers. The working registers are used by the ALU as temporary ‘scratchpad’ memory, for example, for holding intermediate results of arithmetic operations. A program is a set of sequential operations on data. The program memory is an area of memory where the actual sequence of instructions which make up the program is stored. Data memory is an area of memory where data such as the value of constants are kept for use by the program during its execution. The program counter is a register used to store the address of the next instruction to be executed. Because the program consists of instructions stored sequentially in program memory, the address of the next instruction is obtained by simply incrementing the number (that is, the address), contained in the program counter.
 
The instruction register contains the actual binary instruction that needs to be executed. The instruction decoder takes the binary instruction and decodes it to determine what operation the instruction must perform and which data it must use. The control unit controls the timing and sequencing of all operations necessary to correctly schedule and execute instructions. While an instruction is executing, the next instruction is fetched from the program memory and placed in the instruction register with help from the program counter. The instruction decoder then decodes the instruction and it is executed when the next execute cycle occurs.
 
The stack is an area of memory used to keep track of the contents of the program counter when subroutines are called. When data is written to the stack, it is stored at the ‘top’ of the stack. This operation is referred to as pushing data onto the stack. When data is removed from the top of the stack, the stack is said to be popped. A subroutine is a block of program code that performs a calculation or operation that the main program needs to do a number of times. Instead of repeatedly inserting the block of code at each position in the main program where it is needed, the subroutine is called when required. When a subroutine is called, the return address (that is, the address of the next instruction that must be executed when the subroutine terminates), is pushed onto the top of the stack. In other words, the program counter is first incremented to specify the address of the next instruction to be executed after subroutine completion and then its contents are pushed onto the stack. The address of the beginning of the subroutine is then loaded into the program counter so that it can be executed. When subroutine execution is complete, the top of the stack is popped and the address of the next instruction is loaded into the program counter again, so that the program can continue where it left off before the subroutine was called.

Emergency Light circuit

The idea for this circuit came when I was repairing my aunt’s emergency light. Bulb based emergency lighting has a low efficiency and ultrabright l.e.d.s provide greater efficiency and more illumination, with a much extended battery life. It was therefore decided to change from a 12V light bulb to a pack of l.e.d.s. To get constant light, a constant voltage technique was adopted, using the circuit in Fig.2. For more power saving, step-down switching is used in preference to step-up. This function is provided by IC1 in conjunction with diode D3, inductor L1 and capacitors C3 and C4.

Emergency Light circuit
Emergency Light circuit
The resulting output is a stable 5V and powers the 12 ultrabright yellow l.e.d.s D4 to D15. The l.e.d.s are grouped in pairs, each pair buffered by a resistor, R4 to R9. Diode D3 is a high-efficiency type – do not change it to a 1N4000 series type as they are less efficient in this role.
The network consisting of R1 and D1 is a power-on indicator. The network around VR1, TR1, R2, R3 and D2 is a low-battery indicator. Preset VR1 should be adjusted until l.e.d. D2 turns on when the battery voltage is low. Inductor L1 should be a toroid type in order to reduce radiated r.f. interference caused by the switching regulator IC1. It should be glued to the circuit board to prevent it from vibrating. A small heatsink should be fitted to IC1. The circuit efficiency was found to be around 80%, i.e. about 10% better than with the step-up switching technique. The circuit operates for about four times longer than the bulb-based one in respect of battery life.

How to Buy project:

How to Buy project:


1) How will I get the project?
How will the project come to my address?
For Students in Jalgaon: You can collect project by hand from Jalgaon. You can send your friend or relative You can collect project by hand from jalgaon
For Students outside Jalgaon: Project will be sent by courier.

2) When will be project delivered to my address?
How many days will it take to reach project to me?
After how many days of receiving the advance you will send the project?

Courier delivery time depends on your City. If it a metro / major city then you will get it within 3 days. But for other cities it may take upto 5 days.


3)What about courier charges ?
Courier charges are included in the project cost.

4) How should I make the payment
Payment: You have to make payment by depositing cash\cheque in SBI bank.
You have to make payment in advance.

5) What is the Procedure to place order for 8051 based project.
What is the procedure to place an order ?
Answer: You have to make advance payment to book a project.
Advance payment can be done in any branch of SBI bank.
You can deposit cash/cheque in my SBI bank account.

6) Does the project/PCB contain your name or any other branding on its body/PCB?
Does these projects looks like they are made by students?
We don"t print our name or any information on PCB or body of the project. All our projects looks like they are made by students.

7) What will I get in this project?
You will get fully assembled, tested project. Along with circuit diagram, PCB layout and microcontroller program.You will also get a soft copy of Project Report

8) Can you send project by COD(Courier-on-Demand) or VPP Parcel ?
Sorry, we don"t send project by COD or VPP, you have to make the advance payment.


For more information contact me for all project as per ur Demand

contact me :- magicdoll.shinde2@gmail.com              or        ph:-  8421346407

Password Based Door Locking

 
 Description:
Main concept behind this project is of a door-latch opening using a password entered through keypad. As well as sending this data to a computer through serial port. User can change this password anytime he/she wish using a keypad 

 
Description:
It mainly consist of following blocks
1. Microcontroller: This is the CPU (central processing unit) of our project. We are going to use a microcontroller of 8051 family. The various functions of microcontroller are like: I. Reading the digital input from Keypad II. Sending this data to LCD so that the person operating this project should read the password III. Sensing the password using keypad and to check whether it is a correct password or a wrong password and rotate the stepper motor if the password entered is a correct password. IV. Sending the data to the computer using serial port. This data consist of the status of entered password (Correct/wrong)
2. LCD: We are going to use 16x2 alphanumeric Liquid Crystal Display (LCD) which means it can display alphabets along with numbers on 2 lines each containing 16 characters.
3. PC Interfacing: We are going to use max 232 IC for pc interfacing, the values of number of persons inside the room and the status of entered password (Correct/wrong) will be sent to pc.
4. Keypad: User will enter the password using the keypad. Various keys of keypad are as following,
I. 0 to 9
II. Enter
III. Escape
Tags:  Door access system, Digital code lock, Keyless entry to home  

Project Cost :    Rupee 6,000/- 

contact me :- magicdoll.shinde2@gmail.com              or        ph:-  8421346407



Solar Tracking System

Description:
Solar is a non conventional source of energy, considering this we have developed solar panels so that we can fulfill our electricity need. But due to revolution of the earth, solar source i.e sun does not face the panel continuously hence less electricity is produced. The energy panel should face the SUN till it is present in a day.
The problem above can be solved by our system by tracking the solar energy. The block diagram below shows system architecture it consist of a LDR sensor senses max solar power which is being given to the Microcontroller through the ADC which digitizes the LDR output. Controller then takes the decision according to then algorithm and tilts the panel towards the direction of the max energy given by LDR with the help of DC Motor . The Motor is used to rotate the LDR to sense the max solar power.
PC interfacing module is used to give the feedback to the system monitoring unit. 
 Solar Tracking System 

Description in detail:
On the monitoring station which receives the data send by the system. This data is logged into the PC. The RS232 converter is used to connect the microcontroller to PC which convert PC"s CMOS level to Controller"s TTL level n vice versa.
Limit sensors or Touch sensors are provided to sense the starting and ending position of the solar panel.
Keypad is provided to adjust the starting position of the solar panel. 

Project Cost :    Rupee 8,000/- 

contact me :- magicdoll.shinde2@gmail.com              or        ph:-  8421346407