SlideShare une entreprise Scribd logo
1  sur  31
Auto Power Supply
Control from 4 Different
Sources using PIC
Microcontroller
http://www.edgefxkits.com/
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
Introduction
 The main objective of this project is to provide uninterrupted power supply
to a load, by selecting the supply source automatically from any available
one out of 4 such as: mains, generator, inverter and solar in the absence of
power supply. The demand for electricity is increasing every day and
frequent power cut is causing many problem in various areas like industries,
hospitals and houses. An alternative arrangement for power source is thus
desirable.
http://www.edgefxkits.com/
Block Diagram
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
http://www.edgefxkits.com/
Hardware Requirements
 PIC16F8 series Microcontroller
 Relay Driver IC
 Relays
 LCD
 Lamp
 Push Buttons
 Transformer
 Diodes
 Voltage Regulator
 Crystal
 LEDS
 Capacitors
 Resistors.
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
http://www.edgefxkits.com/
Software Requirements
 MPLAB & CCS C Compiler
 Languages: Embedded C or Assembly
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
http://www.edgefxkits.com/
Embedded System
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 Embedded System is a combination of hardware and software used to
achieve a single specific task.
 An embedded system is a microcontroller-based, software driven, reliable,
real-time control system, autonomous, or human or network interactive.
 Operating on diverse physical variables and in diverse environments and
sold into a competitive and cost conscious market.
http://www.edgefxkits.com/
Embedded System
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 An embedded system is not a computer system that is used primarily for
processing, not a software system on PC or UNIX, not a traditional business
or scientific application.
 High-end embedded & lower end embedded systems.
 High-end embedded system - Generally 32, 64 Bit Controllers used with OS.
 Examples Personal Digital Assistant and Mobile phones etc .
http://www.edgefxkits.com/
Embedded System
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 Lower end embedded systems - Generally 8,16 Bit Controllers used with an
minimal operating systems and hardware layout designed for the specific
purpose.
 Examples Small controllers and devices in our everyday life like Washing
Machine, Microwave Ovens, where they are embedded in.
http://www.edgefxkits.com/
Characteristics of Embedded System
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 An embedded system is any compute system hidden inside a product
other than a computer.
 There will encounter a number of difficulties when writing embedded
system software in addition to those we encounter when we write
applications.
http://www.edgefxkits.com/
Applications of Embedded System
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
Throughput :
 Our system may need to handle a lot of data in a short period of time.
Response :
 Our system may need to react to events quickly.
Testability :
 Setting up equipment to test embedded software can be difficult.
Debugability :
 Without a screen or a keyboard, finding out what the software is doing
wrong (other than not working) is a troublesome problem.
http://www.edgefxkits.com/
Applications of Embedded System
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
Reliability :
 Embedded systems must be able to handle any situation without
human intervention.
Memory space :
 Memory is limited on embedded systems, and you must make the
software and the data fit into whatever memory exists.
Program installation :
 You will need special tools to get your software into embedded systems.
http://www.edgefxkits.com/
Micro Controller
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 Compatible with MCS®-51 products
 8K bytes of in-system programmable (ISP)
flash memory
 4.0V to 5.5V operating range
 Crystal frequency 11.0592mhz
 Three-level program memory lock
 256 x 8-bit internal RAM
 32 programmable I/O lines AT89S52
http://www.edgefxkits.com/
Relay
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 It is A electro magnetic switch
 Used to control the electrical devices
 Copper core magnetic flux plays main role here
http://www.edgefxkits.com/
Relay Driver ULN2003
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 ULN is relay driver application
 The ULN2003 is A monolithic high voltage and high current darlington
transistor arrays.
 It consists of seven NPN darlington pairs that features high-voltage
outputs with common-cathode clamp diode for switching inductive
loads.
 The collector-current rating of a single darlington pair is 500ma.
 The darlington pairs may be paralleled for higher current capability.
http://www.edgefxkits.com/
Relay Driver ULN2003
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 The ULN functions as an inverter.
 If the logic at input 1b is high then
the output at its corresponding pin 1c
will be low.
http://www.edgefxkits.com/
Circuit Diagram
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
http://www.edgefxkits.com/
Circuit Description
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 The circuit diagram of A simple 100 watt inverter using IC CD4047 and
MOSFET IRF540
 Cd4047 is a low power CMOS astable multivibrator ic
 Here it is wired as an astable multivibrator producing two pulse trains of
0.01s which are 180 degree out of phase at the pins 10 and 11 of the IC.
http://www.edgefxkits.com/
Bridge Rectifier
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 A diode bridge is an arrangement of four (or more) diodes in a bridge circuit
configuration.
 It provides the same polarity of output for either polarity of input.
 When used in its most common application, for conversion of an alternating
current (AC) input into a direct current (DC) output.
 It is known as a bridge rectifier.
http://www.edgefxkits.com/
Bridge Rectifier
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 A bridge rectifier provides full-wave rectification from a two-wire AC input.
 Resulting in lower cost and weight as compared to a rectifier with a 3-wire
input from a transformer with a center-tapped secondary winding.
 According to the conventional model of current flow, current is assumed to
flow through electrical conductors from the positive to the negative pole.
http://www.edgefxkits.com/
Voltage Regulator
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 A voltage regulator is designed to automatically maintain a constant voltage
level.
 A voltage regulator may be a simple "feed-forward" design or may include
negative feedback control loops.
 It may use an electromechanical mechanism, or electronic components.
 Depending on the design, it may be used to regulate one or more AC or DC
voltages.
 Electronic voltage regulators are found in devices such as computer power
supplies.
http://www.edgefxkits.com/
Voltage Regulator
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 Where they stabilize the DC voltages used by the processor and other
elements.
 In automobile alternators and central power station generator plants,
voltage regulators control the output of the plant.
 In an electric power distribution system, voltage regulators may be installed
at a substation or along distribution lines.
 So that all customers receive steady voltage independent of how much
power is drawn from the line.
http://www.edgefxkits.com/
Voltage Regulator
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 7805 is a voltage regulator integrated circuit. It is a member of 78xx series of
fixed linear voltage regulator ICs.
 The voltage source in a circuit may have fluctuations and would not give the
fixed voltage output.
 The voltage regulator IC maintains the output voltage at a constant value.
 The xx in 78xx indicates the fixed output voltage it is designed to provide
7805 provides +5V regulated power supply.
 Capacitors of suitable values can be connected at input and output pins
depending upon the respective voltage levels.
http://www.edgefxkits.com/
Working Principle
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 This project uses an arrangement of 4 different sources of supply which are
channelized to a load so as to have an uninterrupted operation of the load.
 As it is not practicable to get 4 sources of supply such as mains supply,
generator supply, inverter supply.
 And Solar supply, we used one source and a set of relays.
 We have taken first source with mains supply and assumed as if being fed
from 4 different sources by connecting all the 4 incoming sources in parallel.
http://www.edgefxkits.com/
Working Principle
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 The ac source to the lamp is connected to four relays by making the entire
normally open contacts parallel and all the common contacts in parallel.
 4 push button switches are used which represent failure of corresponding
supply respectively and are interfaced to the controller.
 Initially we have given high input signal to the microcontroller, so as a
result the controller generates a low output to activate the first relay driver.
 Which will result in the relay being energized and the lamp glows.
http://www.edgefxkits.com/
Working Principle
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 While the push button for mains is pressed that represents failure of mains
supply as a result the supply is provided from the next source
 And the microcontroller receive high input and generates low output to
activate the second relay driver.
 Which will result in the second relay being energized and the lamp glows .
 When we press the generator button, it indicates the generator fails to
operate and the supply comes from the next source.
 The next source will supply high input to the controller and which will
provide low signal to the third relay and the lamp switches ON.
http://www.edgefxkits.com/
Working Principle
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 When we press the third push button the supply will chose next source
now the fourth source will provide input to the microcontroller.
 Controller activates the fourth relay and the load will get the supply and
the lamp continues to glow.
 When all the relays are off leaving no supply to the lamp, the lamp is
switched off.
 One 16 x 2 lines LCD is used to display the condition of the supply sources
and the load on real time basis.
http://www.edgefxkits.com/
Applications
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 Power supply can be control in :
 Industries
 Hospitals
 Schools
 Multiplexes
 Banks etc.
http://www.edgefxkits.com/
Advantage
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 Power supply can be controlled from four different sources.
 if any problem occurred in one source then other sources can be
used.
http://www.edgefxkits.com/
Disadvantages
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 Cost of equipment is very high.
 Its very difficult to install and maintain the kit.
http://www.edgefxkits.com/
Conclusion
Auto Power Supply Control from 4 Different
Sources using PIC Microcontroller
 The main scope of this project is to provide a continuous power supply
control to the output load through any of the sources from which we are
operating the device, i.e. , generator, and inverter and solar automatically
in the absence of any of the source. The complete operation of Auto
power supply control from 4 different sources is based on the
microcontroller. This project is a low-cost, reliable, effective and efficient
system.
http://www.edgefxkits.com/

Contenu connexe

Tendances

MPPT Solar Charge Controller
MPPT Solar Charge ControllerMPPT Solar Charge Controller
MPPT Solar Charge ControllerShashank Narayan
 
Power theft detection
Power theft detectionPower theft detection
Power theft detectionAravind Shaji
 
Foot step power generation(REPORT) ..pdf
Foot step power generation(REPORT) ..pdfFoot step power generation(REPORT) ..pdf
Foot step power generation(REPORT) ..pdfansari masroof
 
electric relay
electric relayelectric relay
electric relayaditya das
 
Seminar presentation on Smart Energy Meter
Seminar presentation on Smart Energy MeterSeminar presentation on Smart Energy Meter
Seminar presentation on Smart Energy Metersudhanshurj
 
Wireless charging of Electric Vehicles (IEEE Paper 2017)
Wireless charging of Electric Vehicles (IEEE Paper 2017)Wireless charging of Electric Vehicles (IEEE Paper 2017)
Wireless charging of Electric Vehicles (IEEE Paper 2017)Georget Eldhose
 
Smart energy meter ppt
Smart energy meter   pptSmart energy meter   ppt
Smart energy meter pptRitam Giri
 
Hvdc transmission seminar
Hvdc transmission seminar Hvdc transmission seminar
Hvdc transmission seminar Utkarsh Jambhule
 
Speed control of dc motor using chopper
Speed control of dc motor using chopperSpeed control of dc motor using chopper
Speed control of dc motor using chopperAjeeta Srivastava
 
From 4 different sourcesauto power supply control solar, mains, generator &am...
From 4 different sourcesauto power supply control solar, mains, generator &am...From 4 different sourcesauto power supply control solar, mains, generator &am...
From 4 different sourcesauto power supply control solar, mains, generator &am...makeitortakeit
 
Electrical Engineering Final Presentation
Electrical Engineering Final Presentation Electrical Engineering Final Presentation
Electrical Engineering Final Presentation Sethmi Kachchakaduge
 
Surge diverter
Surge diverterSurge diverter
Surge divertersarunkutti
 
SUPERCAPACITORS AND BATTERY POWER MANAGEMENT FOR HYBRID VEHICLE APPLICATIONS ...
SUPERCAPACITORS AND BATTERY POWER MANAGEMENT FOR HYBRID VEHICLE APPLICATIONS ...SUPERCAPACITORS AND BATTERY POWER MANAGEMENT FOR HYBRID VEHICLE APPLICATIONS ...
SUPERCAPACITORS AND BATTERY POWER MANAGEMENT FOR HYBRID VEHICLE APPLICATIONS ...Pradeep Avanigadda
 
Solar based wireless charging of electric vehicle
Solar based wireless charging of electric vehicleSolar based wireless charging of electric vehicle
Solar based wireless charging of electric vehicleAshutosh kumar
 
APFC project presentation
APFC project presentationAPFC project presentation
APFC project presentationkartickmp613
 
automatic power factor correction
automatic power factor correction automatic power factor correction
automatic power factor correction Febin Paul
 
HYBRID SOLAR INVERTER
HYBRID SOLAR INVERTERHYBRID SOLAR INVERTER
HYBRID SOLAR INVERTERprabhat kumar
 
Hybrid wind-solar Power generation system
Hybrid wind-solar Power generation systemHybrid wind-solar Power generation system
Hybrid wind-solar Power generation systemShivam Joshi
 

Tendances (20)

MPPT Solar Charge Controller
MPPT Solar Charge ControllerMPPT Solar Charge Controller
MPPT Solar Charge Controller
 
Power theft detection
Power theft detectionPower theft detection
Power theft detection
 
Foot step power generation(REPORT) ..pdf
Foot step power generation(REPORT) ..pdfFoot step power generation(REPORT) ..pdf
Foot step power generation(REPORT) ..pdf
 
electric relay
electric relayelectric relay
electric relay
 
Seminar presentation on Smart Energy Meter
Seminar presentation on Smart Energy MeterSeminar presentation on Smart Energy Meter
Seminar presentation on Smart Energy Meter
 
Wireless charging of Electric Vehicles (IEEE Paper 2017)
Wireless charging of Electric Vehicles (IEEE Paper 2017)Wireless charging of Electric Vehicles (IEEE Paper 2017)
Wireless charging of Electric Vehicles (IEEE Paper 2017)
 
Smart energy meter ppt
Smart energy meter   pptSmart energy meter   ppt
Smart energy meter ppt
 
Hvdc transmission seminar
Hvdc transmission seminar Hvdc transmission seminar
Hvdc transmission seminar
 
Speed control of dc motor using chopper
Speed control of dc motor using chopperSpeed control of dc motor using chopper
Speed control of dc motor using chopper
 
Solar Mobile Charger Report
Solar Mobile Charger ReportSolar Mobile Charger Report
Solar Mobile Charger Report
 
From 4 different sourcesauto power supply control solar, mains, generator &am...
From 4 different sourcesauto power supply control solar, mains, generator &am...From 4 different sourcesauto power supply control solar, mains, generator &am...
From 4 different sourcesauto power supply control solar, mains, generator &am...
 
Electrical Engineering Final Presentation
Electrical Engineering Final Presentation Electrical Engineering Final Presentation
Electrical Engineering Final Presentation
 
Surge diverter
Surge diverterSurge diverter
Surge diverter
 
SUPERCAPACITORS AND BATTERY POWER MANAGEMENT FOR HYBRID VEHICLE APPLICATIONS ...
SUPERCAPACITORS AND BATTERY POWER MANAGEMENT FOR HYBRID VEHICLE APPLICATIONS ...SUPERCAPACITORS AND BATTERY POWER MANAGEMENT FOR HYBRID VEHICLE APPLICATIONS ...
SUPERCAPACITORS AND BATTERY POWER MANAGEMENT FOR HYBRID VEHICLE APPLICATIONS ...
 
Solar based wireless charging of electric vehicle
Solar based wireless charging of electric vehicleSolar based wireless charging of electric vehicle
Solar based wireless charging of electric vehicle
 
APFC project presentation
APFC project presentationAPFC project presentation
APFC project presentation
 
automatic power factor correction
automatic power factor correction automatic power factor correction
automatic power factor correction
 
HYBRID SOLAR INVERTER
HYBRID SOLAR INVERTERHYBRID SOLAR INVERTER
HYBRID SOLAR INVERTER
 
Hybrid wind-solar Power generation system
Hybrid wind-solar Power generation systemHybrid wind-solar Power generation system
Hybrid wind-solar Power generation system
 
Solar Mobile Charger ppt
Solar Mobile Charger pptSolar Mobile Charger ppt
Solar Mobile Charger ppt
 

En vedette

Auto selection of any aviliable phase
Auto selection of any aviliable phaseAuto selection of any aviliable phase
Auto selection of any aviliable phasenajeebs10
 
Automatic Phase Changer
Automatic Phase ChangerAutomatic Phase Changer
Automatic Phase ChangerBhanu Bhawesh
 
Design and Construction of Automatic Three Phase Power System Selector
Design and Construction of Automatic Three Phase Power System SelectorDesign and Construction of Automatic Three Phase Power System Selector
Design and Construction of Automatic Three Phase Power System Selectoriosrjce
 
Opto-Electronic Oscillator Circuit Working and Applications
Opto-Electronic Oscillator Circuit Working and ApplicationsOpto-Electronic Oscillator Circuit Working and Applications
Opto-Electronic Oscillator Circuit Working and ApplicationsEdgefxkits & Solutions
 
The mangalyaan (after mission completion)
The mangalyaan (after mission completion)The mangalyaan (after mission completion)
The mangalyaan (after mission completion)Akhilesh Rathiya
 
Mangalyaan (India's mission to mars)
Mangalyaan (India's mission to mars)Mangalyaan (India's mission to mars)
Mangalyaan (India's mission to mars)prathik_gs
 
Automatic phase changer
Automatic phase changerAutomatic phase changer
Automatic phase changerRahul Kumar
 
Constitution overview abbreviated for 8th grade
Constitution overview abbreviated for 8th gradeConstitution overview abbreviated for 8th grade
Constitution overview abbreviated for 8th gradeDavid Poss
 
GSM & CDMA & OFDM
GSM & CDMA & OFDMGSM & CDMA & OFDM
GSM & CDMA & OFDMA. Shamel
 
Microcontroller in automobile and applications
Microcontroller in automobile and applicationsMicrocontroller in automobile and applications
Microcontroller in automobile and applicationsKartik Kalpande Patil
 
Electricity safety
Electricity  safetyElectricity  safety
Electricity safetyMissSamson
 
Annual Report (FY-2015-16) of Kuwer Industries Ltd.
Annual Report (FY-2015-16) of Kuwer Industries Ltd.Annual Report (FY-2015-16) of Kuwer Industries Ltd.
Annual Report (FY-2015-16) of Kuwer Industries Ltd.IndiaMART InterMESH Limited
 

En vedette (20)

Self Switching Power Supply
Self Switching Power SupplySelf Switching Power Supply
Self Switching Power Supply
 
Auto selection of any aviliable phase
Auto selection of any aviliable phaseAuto selection of any aviliable phase
Auto selection of any aviliable phase
 
Automatic Phase Changer
Automatic Phase ChangerAutomatic Phase Changer
Automatic Phase Changer
 
Design and Construction of Automatic Three Phase Power System Selector
Design and Construction of Automatic Three Phase Power System SelectorDesign and Construction of Automatic Three Phase Power System Selector
Design and Construction of Automatic Three Phase Power System Selector
 
Electrical Projects
Electrical ProjectsElectrical Projects
Electrical Projects
 
Project no.9
Project no.9Project no.9
Project no.9
 
Circuits
CircuitsCircuits
Circuits
 
Opto-Electronic Oscillator Circuit Working and Applications
Opto-Electronic Oscillator Circuit Working and ApplicationsOpto-Electronic Oscillator Circuit Working and Applications
Opto-Electronic Oscillator Circuit Working and Applications
 
The mangalyaan (after mission completion)
The mangalyaan (after mission completion)The mangalyaan (after mission completion)
The mangalyaan (after mission completion)
 
Mangalyaan (India's mission to mars)
Mangalyaan (India's mission to mars)Mangalyaan (India's mission to mars)
Mangalyaan (India's mission to mars)
 
Automatic phase changer
Automatic phase changerAutomatic phase changer
Automatic phase changer
 
Dual converter
Dual converterDual converter
Dual converter
 
Constitution overview abbreviated for 8th grade
Constitution overview abbreviated for 8th gradeConstitution overview abbreviated for 8th grade
Constitution overview abbreviated for 8th grade
 
Ppt projext 1
Ppt projext 1Ppt projext 1
Ppt projext 1
 
GSM & CDMA & OFDM
GSM & CDMA & OFDMGSM & CDMA & OFDM
GSM & CDMA & OFDM
 
Dual Converter using Thyristors
Dual Converter using ThyristorsDual Converter using Thyristors
Dual Converter using Thyristors
 
Microcontroller in automobile and applications
Microcontroller in automobile and applicationsMicrocontroller in automobile and applications
Microcontroller in automobile and applications
 
Electricity safety
Electricity  safetyElectricity  safety
Electricity safety
 
Ai Cdma
Ai CdmaAi Cdma
Ai Cdma
 
Annual Report (FY-2015-16) of Kuwer Industries Ltd.
Annual Report (FY-2015-16) of Kuwer Industries Ltd.Annual Report (FY-2015-16) of Kuwer Industries Ltd.
Annual Report (FY-2015-16) of Kuwer Industries Ltd.
 

Similaire à Auto power supply control from 4 different sources using pic microcontroller

Networking of multiple microcontrollers
Networking of multiple microcontrollersNetworking of multiple microcontrollers
Networking of multiple microcontrollersEdgefxkits & Solutions
 
Embedded system 8051 Microcontroller
Embedded system 8051 MicrocontrollerEmbedded system 8051 Microcontroller
Embedded system 8051 Microcontrollerankitsharmaj
 
Remote ac power control by android application with lcd display
Remote ac power control by android application with lcd displayRemote ac power control by android application with lcd display
Remote ac power control by android application with lcd displayEdgefxkits & Solutions
 
Industrial Temperature Controller using Microcontroller
Industrial Temperature Controller using MicrocontrollerIndustrial Temperature Controller using Microcontroller
Industrial Temperature Controller using MicrocontrollerEdgefxkits & Solutions
 
4 Way traffic controll new
4 Way traffic controll new4 Way traffic controll new
4 Way traffic controll newMainak Nandi
 
Implementation and Controlling of Electrical Appliances by using Bluetooth
Implementation and Controlling of Electrical Appliances by using BluetoothImplementation and Controlling of Electrical Appliances by using Bluetooth
Implementation and Controlling of Electrical Appliances by using BluetoothIRJET Journal
 
electronic voting machine by rfid
electronic voting machine by rfidelectronic voting machine by rfid
electronic voting machine by rfidSaurabh Uniyal
 
Overview of Microcontroller and ATMega32 microcontroller
Overview of Microcontroller and ATMega32 microcontrollerOverview of Microcontroller and ATMega32 microcontroller
Overview of Microcontroller and ATMega32 microcontrollerRup Chowdhury
 
Electric Vehicle Charging Method for Smart Homes/Buildings with a Photovoltai...
Electric Vehicle Charging Method for SmartHomes/Buildings with a Photovoltai...Electric Vehicle Charging Method for SmartHomes/Buildings with a Photovoltai...
Electric Vehicle Charging Method for Smart Homes/Buildings with a Photovoltai...Bharath University
 
DETECTING POWER GRID SYNCHRONISATION FAILURE ON SENSING BAD VOLTAGE OR FREQUE...
DETECTING POWER GRID SYNCHRONISATION FAILURE ON SENSING BAD VOLTAGE OR FREQUE...DETECTING POWER GRID SYNCHRONISATION FAILURE ON SENSING BAD VOLTAGE OR FREQUE...
DETECTING POWER GRID SYNCHRONISATION FAILURE ON SENSING BAD VOLTAGE OR FREQUE...Pradeep Avanigadda
 
Synopsis for alcohol detection with vehicle controlling (1)
Synopsis for alcohol detection with vehicle controlling (1)Synopsis for alcohol detection with vehicle controlling (1)
Synopsis for alcohol detection with vehicle controlling (1)Pankaj Singh
 
Wind generator monitoring and control system_Jakab Zsolt
Wind generator monitoring and control system_Jakab ZsoltWind generator monitoring and control system_Jakab Zsolt
Wind generator monitoring and control system_Jakab ZsoltJakab Zsolt
 
Presentation on home automation system
Presentation on  home automation systemPresentation on  home automation system
Presentation on home automation systemNamit Sood
 
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...ijistjournal
 
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...ijistjournal
 

Similaire à Auto power supply control from 4 different sources using pic microcontroller (20)

Networking of multiple microcontrollers
Networking of multiple microcontrollersNetworking of multiple microcontrollers
Networking of multiple microcontrollers
 
Embedded system 8051 Microcontroller
Embedded system 8051 MicrocontrollerEmbedded system 8051 Microcontroller
Embedded system 8051 Microcontroller
 
DC motor controlling
DC motor controllingDC motor controlling
DC motor controlling
 
Remote ac power control by android application with lcd display
Remote ac power control by android application with lcd displayRemote ac power control by android application with lcd display
Remote ac power control by android application with lcd display
 
Basic PLC.ppt
Basic PLC.pptBasic PLC.ppt
Basic PLC.ppt
 
Industrial Temperature Controller using Microcontroller
Industrial Temperature Controller using MicrocontrollerIndustrial Temperature Controller using Microcontroller
Industrial Temperature Controller using Microcontroller
 
4 Way traffic controll new
4 Way traffic controll new4 Way traffic controll new
4 Way traffic controll new
 
Implementation and Controlling of Electrical Appliances by using Bluetooth
Implementation and Controlling of Electrical Appliances by using BluetoothImplementation and Controlling of Electrical Appliances by using Bluetooth
Implementation and Controlling of Electrical Appliances by using Bluetooth
 
electronic voting machine by rfid
electronic voting machine by rfidelectronic voting machine by rfid
electronic voting machine by rfid
 
Overview of Microcontroller and ATMega32 microcontroller
Overview of Microcontroller and ATMega32 microcontrollerOverview of Microcontroller and ATMega32 microcontroller
Overview of Microcontroller and ATMega32 microcontroller
 
Electric Vehicle Charging Method for Smart Homes/Buildings with a Photovoltai...
Electric Vehicle Charging Method for SmartHomes/Buildings with a Photovoltai...Electric Vehicle Charging Method for SmartHomes/Buildings with a Photovoltai...
Electric Vehicle Charging Method for Smart Homes/Buildings with a Photovoltai...
 
Password Based Circuit Breaker
Password Based Circuit BreakerPassword Based Circuit Breaker
Password Based Circuit Breaker
 
DETECTING POWER GRID SYNCHRONISATION FAILURE ON SENSING BAD VOLTAGE OR FREQUE...
DETECTING POWER GRID SYNCHRONISATION FAILURE ON SENSING BAD VOLTAGE OR FREQUE...DETECTING POWER GRID SYNCHRONISATION FAILURE ON SENSING BAD VOLTAGE OR FREQUE...
DETECTING POWER GRID SYNCHRONISATION FAILURE ON SENSING BAD VOLTAGE OR FREQUE...
 
03 TOTAL REPORT
03 TOTAL REPORT03 TOTAL REPORT
03 TOTAL REPORT
 
PLCandSCADA.pdf
PLCandSCADA.pdfPLCandSCADA.pdf
PLCandSCADA.pdf
 
Synopsis for alcohol detection with vehicle controlling (1)
Synopsis for alcohol detection with vehicle controlling (1)Synopsis for alcohol detection with vehicle controlling (1)
Synopsis for alcohol detection with vehicle controlling (1)
 
Wind generator monitoring and control system_Jakab Zsolt
Wind generator monitoring and control system_Jakab ZsoltWind generator monitoring and control system_Jakab Zsolt
Wind generator monitoring and control system_Jakab Zsolt
 
Presentation on home automation system
Presentation on  home automation systemPresentation on  home automation system
Presentation on home automation system
 
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
 
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
 

Plus de Edgefxkits & Solutions

Mains operated under voltage over voltage trip switch
Mains operated under voltage over voltage trip switchMains operated under voltage over voltage trip switch
Mains operated under voltage over voltage trip switchEdgefxkits & Solutions
 
TV Remote Jammer | 555 Timer Projects | Final Year Engineering Projects
TV Remote Jammer | 555 Timer Projects | Final Year Engineering ProjectsTV Remote Jammer | 555 Timer Projects | Final Year Engineering Projects
TV Remote Jammer | 555 Timer Projects | Final Year Engineering ProjectsEdgefxkits & Solutions
 
Predefined speed control of bldc motor
Predefined speed control of bldc motorPredefined speed control of bldc motor
Predefined speed control of bldc motorEdgefxkits & Solutions
 
Microcontroller based Electronic Eye Controlled security System
Microcontroller based Electronic Eye Controlled security SystemMicrocontroller based Electronic Eye Controlled security System
Microcontroller based Electronic Eye Controlled security SystemEdgefxkits & Solutions
 
How to select the diy electrical projects kit by engineering students
How to select the diy electrical projects kit by engineering studentsHow to select the diy electrical projects kit by engineering students
How to select the diy electrical projects kit by engineering studentsEdgefxkits & Solutions
 
Smooth start of a single phase induction motor
Smooth start of a single phase induction motorSmooth start of a single phase induction motor
Smooth start of a single phase induction motorEdgefxkits & Solutions
 
How to build a robot with an arduino and 8051 microcontroller
How to build a robot with an arduino and 8051 microcontrollerHow to build a robot with an arduino and 8051 microcontroller
How to build a robot with an arduino and 8051 microcontrollerEdgefxkits & Solutions
 
Importance of Doing Mini Projects By Engineering Students
Importance of Doing Mini Projects By Engineering StudentsImportance of Doing Mini Projects By Engineering Students
Importance of Doing Mini Projects By Engineering StudentsEdgefxkits & Solutions
 
Common mode rejection ratio (cmrr) and the operational amplifier
Common mode rejection ratio (cmrr) and the operational amplifierCommon mode rejection ratio (cmrr) and the operational amplifier
Common mode rejection ratio (cmrr) and the operational amplifierEdgefxkits & Solutions
 
Tutorial on avr atmega8 microcontroller, architecture and its applications
Tutorial on avr atmega8 microcontroller, architecture and its applicationsTutorial on avr atmega8 microcontroller, architecture and its applications
Tutorial on avr atmega8 microcontroller, architecture and its applicationsEdgefxkits & Solutions
 
Photodiode working principle characteristics and applications
Photodiode working principle characteristics and applicationsPhotodiode working principle characteristics and applications
Photodiode working principle characteristics and applicationsEdgefxkits & Solutions
 
Cro cathode ray oscilloscope working and applications
Cro cathode ray oscilloscope working and applicationsCro cathode ray oscilloscope working and applications
Cro cathode ray oscilloscope working and applicationsEdgefxkits & Solutions
 
Electronic Speed Control (ESC) Circuits, Working And Applications
Electronic Speed Control (ESC) Circuits, Working And ApplicationsElectronic Speed Control (ESC) Circuits, Working And Applications
Electronic Speed Control (ESC) Circuits, Working And ApplicationsEdgefxkits & Solutions
 
Difference between soc and single board computer ppt1
Difference between soc and single board computer ppt1Difference between soc and single board computer ppt1
Difference between soc and single board computer ppt1Edgefxkits & Solutions
 
Prepaid energy meter with gsm interface
Prepaid energy meter with gsm interfacePrepaid energy meter with gsm interface
Prepaid energy meter with gsm interfaceEdgefxkits & Solutions
 
Pc mouse operated electrical load control using vb application
Pc mouse operated electrical load control using vb applicationPc mouse operated electrical load control using vb application
Pc mouse operated electrical load control using vb applicationEdgefxkits & Solutions
 

Plus de Edgefxkits & Solutions (20)

Mains operated under voltage over voltage trip switch
Mains operated under voltage over voltage trip switchMains operated under voltage over voltage trip switch
Mains operated under voltage over voltage trip switch
 
Scada for remote industrial plant
Scada for remote industrial plant Scada for remote industrial plant
Scada for remote industrial plant
 
TV Remote Jammer | 555 Timer Projects | Final Year Engineering Projects
TV Remote Jammer | 555 Timer Projects | Final Year Engineering ProjectsTV Remote Jammer | 555 Timer Projects | Final Year Engineering Projects
TV Remote Jammer | 555 Timer Projects | Final Year Engineering Projects
 
Predefined speed control of bldc motor
Predefined speed control of bldc motorPredefined speed control of bldc motor
Predefined speed control of bldc motor
 
Microcontroller based Electronic Eye Controlled security System
Microcontroller based Electronic Eye Controlled security SystemMicrocontroller based Electronic Eye Controlled security System
Microcontroller based Electronic Eye Controlled security System
 
How to select the diy electrical projects kit by engineering students
How to select the diy electrical projects kit by engineering studentsHow to select the diy electrical projects kit by engineering students
How to select the diy electrical projects kit by engineering students
 
Smooth start of a single phase induction motor
Smooth start of a single phase induction motorSmooth start of a single phase induction motor
Smooth start of a single phase induction motor
 
How to build a robot with an arduino and 8051 microcontroller
How to build a robot with an arduino and 8051 microcontrollerHow to build a robot with an arduino and 8051 microcontroller
How to build a robot with an arduino and 8051 microcontroller
 
Importance of Doing Mini Projects By Engineering Students
Importance of Doing Mini Projects By Engineering StudentsImportance of Doing Mini Projects By Engineering Students
Importance of Doing Mini Projects By Engineering Students
 
Common mode rejection ratio (cmrr) and the operational amplifier
Common mode rejection ratio (cmrr) and the operational amplifierCommon mode rejection ratio (cmrr) and the operational amplifier
Common mode rejection ratio (cmrr) and the operational amplifier
 
Vehicle tracking by gps gsm
Vehicle tracking by gps   gsm Vehicle tracking by gps   gsm
Vehicle tracking by gps gsm
 
Tutorial on avr atmega8 microcontroller, architecture and its applications
Tutorial on avr atmega8 microcontroller, architecture and its applicationsTutorial on avr atmega8 microcontroller, architecture and its applications
Tutorial on avr atmega8 microcontroller, architecture and its applications
 
Photodiode working principle characteristics and applications
Photodiode working principle characteristics and applicationsPhotodiode working principle characteristics and applications
Photodiode working principle characteristics and applications
 
Cro cathode ray oscilloscope working and applications
Cro cathode ray oscilloscope working and applicationsCro cathode ray oscilloscope working and applications
Cro cathode ray oscilloscope working and applications
 
Rfid security access control system
Rfid security access control systemRfid security access control system
Rfid security access control system
 
Density based traffic signal system
Density based traffic signal systemDensity based traffic signal system
Density based traffic signal system
 
Electronic Speed Control (ESC) Circuits, Working And Applications
Electronic Speed Control (ESC) Circuits, Working And ApplicationsElectronic Speed Control (ESC) Circuits, Working And Applications
Electronic Speed Control (ESC) Circuits, Working And Applications
 
Difference between soc and single board computer ppt1
Difference between soc and single board computer ppt1Difference between soc and single board computer ppt1
Difference between soc and single board computer ppt1
 
Prepaid energy meter with gsm interface
Prepaid energy meter with gsm interfacePrepaid energy meter with gsm interface
Prepaid energy meter with gsm interface
 
Pc mouse operated electrical load control using vb application
Pc mouse operated electrical load control using vb applicationPc mouse operated electrical load control using vb application
Pc mouse operated electrical load control using vb application
 

Dernier

Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTbhaskargani46
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . pptDineshKumar4165
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringmulugeta48
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxfenichawla
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXssuser89054b
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueBhangaleSonal
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...SUHANI PANDEY
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfRagavanV2
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 

Dernier (20)

Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
NFPA 5000 2024 standard .
NFPA 5000 2024 standard                                  .NFPA 5000 2024 standard                                  .
NFPA 5000 2024 standard .
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 

Auto power supply control from 4 different sources using pic microcontroller

  • 1. Auto Power Supply Control from 4 Different Sources using PIC Microcontroller
  • 2. http://www.edgefxkits.com/ Auto Power Supply Control from 4 Different Sources using PIC Microcontroller Introduction  The main objective of this project is to provide uninterrupted power supply to a load, by selecting the supply source automatically from any available one out of 4 such as: mains, generator, inverter and solar in the absence of power supply. The demand for electricity is increasing every day and frequent power cut is causing many problem in various areas like industries, hospitals and houses. An alternative arrangement for power source is thus desirable.
  • 3. http://www.edgefxkits.com/ Block Diagram Auto Power Supply Control from 4 Different Sources using PIC Microcontroller
  • 4. http://www.edgefxkits.com/ Hardware Requirements  PIC16F8 series Microcontroller  Relay Driver IC  Relays  LCD  Lamp  Push Buttons  Transformer  Diodes  Voltage Regulator  Crystal  LEDS  Capacitors  Resistors. Auto Power Supply Control from 4 Different Sources using PIC Microcontroller
  • 5. http://www.edgefxkits.com/ Software Requirements  MPLAB & CCS C Compiler  Languages: Embedded C or Assembly Auto Power Supply Control from 4 Different Sources using PIC Microcontroller
  • 6. http://www.edgefxkits.com/ Embedded System Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  Embedded System is a combination of hardware and software used to achieve a single specific task.  An embedded system is a microcontroller-based, software driven, reliable, real-time control system, autonomous, or human or network interactive.  Operating on diverse physical variables and in diverse environments and sold into a competitive and cost conscious market.
  • 7. http://www.edgefxkits.com/ Embedded System Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  An embedded system is not a computer system that is used primarily for processing, not a software system on PC or UNIX, not a traditional business or scientific application.  High-end embedded & lower end embedded systems.  High-end embedded system - Generally 32, 64 Bit Controllers used with OS.  Examples Personal Digital Assistant and Mobile phones etc .
  • 8. http://www.edgefxkits.com/ Embedded System Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  Lower end embedded systems - Generally 8,16 Bit Controllers used with an minimal operating systems and hardware layout designed for the specific purpose.  Examples Small controllers and devices in our everyday life like Washing Machine, Microwave Ovens, where they are embedded in.
  • 9. http://www.edgefxkits.com/ Characteristics of Embedded System Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  An embedded system is any compute system hidden inside a product other than a computer.  There will encounter a number of difficulties when writing embedded system software in addition to those we encounter when we write applications.
  • 10. http://www.edgefxkits.com/ Applications of Embedded System Auto Power Supply Control from 4 Different Sources using PIC Microcontroller Throughput :  Our system may need to handle a lot of data in a short period of time. Response :  Our system may need to react to events quickly. Testability :  Setting up equipment to test embedded software can be difficult. Debugability :  Without a screen or a keyboard, finding out what the software is doing wrong (other than not working) is a troublesome problem.
  • 11. http://www.edgefxkits.com/ Applications of Embedded System Auto Power Supply Control from 4 Different Sources using PIC Microcontroller Reliability :  Embedded systems must be able to handle any situation without human intervention. Memory space :  Memory is limited on embedded systems, and you must make the software and the data fit into whatever memory exists. Program installation :  You will need special tools to get your software into embedded systems.
  • 12. http://www.edgefxkits.com/ Micro Controller Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  Compatible with MCS®-51 products  8K bytes of in-system programmable (ISP) flash memory  4.0V to 5.5V operating range  Crystal frequency 11.0592mhz  Three-level program memory lock  256 x 8-bit internal RAM  32 programmable I/O lines AT89S52
  • 13. http://www.edgefxkits.com/ Relay Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  It is A electro magnetic switch  Used to control the electrical devices  Copper core magnetic flux plays main role here
  • 14. http://www.edgefxkits.com/ Relay Driver ULN2003 Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  ULN is relay driver application  The ULN2003 is A monolithic high voltage and high current darlington transistor arrays.  It consists of seven NPN darlington pairs that features high-voltage outputs with common-cathode clamp diode for switching inductive loads.  The collector-current rating of a single darlington pair is 500ma.  The darlington pairs may be paralleled for higher current capability.
  • 15. http://www.edgefxkits.com/ Relay Driver ULN2003 Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  The ULN functions as an inverter.  If the logic at input 1b is high then the output at its corresponding pin 1c will be low.
  • 16. http://www.edgefxkits.com/ Circuit Diagram Auto Power Supply Control from 4 Different Sources using PIC Microcontroller
  • 17. http://www.edgefxkits.com/ Circuit Description Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  The circuit diagram of A simple 100 watt inverter using IC CD4047 and MOSFET IRF540  Cd4047 is a low power CMOS astable multivibrator ic  Here it is wired as an astable multivibrator producing two pulse trains of 0.01s which are 180 degree out of phase at the pins 10 and 11 of the IC.
  • 18. http://www.edgefxkits.com/ Bridge Rectifier Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  A diode bridge is an arrangement of four (or more) diodes in a bridge circuit configuration.  It provides the same polarity of output for either polarity of input.  When used in its most common application, for conversion of an alternating current (AC) input into a direct current (DC) output.  It is known as a bridge rectifier.
  • 19. http://www.edgefxkits.com/ Bridge Rectifier Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  A bridge rectifier provides full-wave rectification from a two-wire AC input.  Resulting in lower cost and weight as compared to a rectifier with a 3-wire input from a transformer with a center-tapped secondary winding.  According to the conventional model of current flow, current is assumed to flow through electrical conductors from the positive to the negative pole.
  • 20. http://www.edgefxkits.com/ Voltage Regulator Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  A voltage regulator is designed to automatically maintain a constant voltage level.  A voltage regulator may be a simple "feed-forward" design or may include negative feedback control loops.  It may use an electromechanical mechanism, or electronic components.  Depending on the design, it may be used to regulate one or more AC or DC voltages.  Electronic voltage regulators are found in devices such as computer power supplies.
  • 21. http://www.edgefxkits.com/ Voltage Regulator Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  Where they stabilize the DC voltages used by the processor and other elements.  In automobile alternators and central power station generator plants, voltage regulators control the output of the plant.  In an electric power distribution system, voltage regulators may be installed at a substation or along distribution lines.  So that all customers receive steady voltage independent of how much power is drawn from the line.
  • 22. http://www.edgefxkits.com/ Voltage Regulator Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  7805 is a voltage regulator integrated circuit. It is a member of 78xx series of fixed linear voltage regulator ICs.  The voltage source in a circuit may have fluctuations and would not give the fixed voltage output.  The voltage regulator IC maintains the output voltage at a constant value.  The xx in 78xx indicates the fixed output voltage it is designed to provide 7805 provides +5V regulated power supply.  Capacitors of suitable values can be connected at input and output pins depending upon the respective voltage levels.
  • 23. http://www.edgefxkits.com/ Working Principle Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  This project uses an arrangement of 4 different sources of supply which are channelized to a load so as to have an uninterrupted operation of the load.  As it is not practicable to get 4 sources of supply such as mains supply, generator supply, inverter supply.  And Solar supply, we used one source and a set of relays.  We have taken first source with mains supply and assumed as if being fed from 4 different sources by connecting all the 4 incoming sources in parallel.
  • 24. http://www.edgefxkits.com/ Working Principle Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  The ac source to the lamp is connected to four relays by making the entire normally open contacts parallel and all the common contacts in parallel.  4 push button switches are used which represent failure of corresponding supply respectively and are interfaced to the controller.  Initially we have given high input signal to the microcontroller, so as a result the controller generates a low output to activate the first relay driver.  Which will result in the relay being energized and the lamp glows.
  • 25. http://www.edgefxkits.com/ Working Principle Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  While the push button for mains is pressed that represents failure of mains supply as a result the supply is provided from the next source  And the microcontroller receive high input and generates low output to activate the second relay driver.  Which will result in the second relay being energized and the lamp glows .  When we press the generator button, it indicates the generator fails to operate and the supply comes from the next source.  The next source will supply high input to the controller and which will provide low signal to the third relay and the lamp switches ON.
  • 26. http://www.edgefxkits.com/ Working Principle Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  When we press the third push button the supply will chose next source now the fourth source will provide input to the microcontroller.  Controller activates the fourth relay and the load will get the supply and the lamp continues to glow.  When all the relays are off leaving no supply to the lamp, the lamp is switched off.  One 16 x 2 lines LCD is used to display the condition of the supply sources and the load on real time basis.
  • 27. http://www.edgefxkits.com/ Applications Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  Power supply can be control in :  Industries  Hospitals  Schools  Multiplexes  Banks etc.
  • 28. http://www.edgefxkits.com/ Advantage Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  Power supply can be controlled from four different sources.  if any problem occurred in one source then other sources can be used.
  • 29. http://www.edgefxkits.com/ Disadvantages Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  Cost of equipment is very high.  Its very difficult to install and maintain the kit.
  • 30. http://www.edgefxkits.com/ Conclusion Auto Power Supply Control from 4 Different Sources using PIC Microcontroller  The main scope of this project is to provide a continuous power supply control to the output load through any of the sources from which we are operating the device, i.e. , generator, and inverter and solar automatically in the absence of any of the source. The complete operation of Auto power supply control from 4 different sources is based on the microcontroller. This project is a low-cost, reliable, effective and efficient system.