Arduino Based Automatic Water Level Indicator and Controller Project With Circuit Diagram & Code
Arduino Based Automatic Water Level Indicator and Controller Project With Circuit Diagram & Code
COM/ARDUINO-PROJECTS)
In this Arduino based automatic water level indicator and controller project we are going to measure the water level by using ultrasonic sensors. Basic
principal of ultrasonic distance measurement (http://circuitdigest.com/microcontroller-projects/arduino-ultrasonic-sensor-based-distance-
measurement) is based on ECHO. When sound waves are transmitted in environment then they return back to the origin as ECHO after striking on any
obstacle. So we have to only calculate its traveling time of both sounds means outgoing time and returning time to origin after striking on any obstacle.
And after some calculation we can get a result that is the distance. This concept is used in our water controller project where the water motor pump is
automatically turned on when water level in the tank becomes low. You can also check this simple water level indicator circuit
(http://circuitdigest.com/electronic-circuits/water-level-indicator-alarm-circuit) for a simpler version of this project.
SPONSORED SEARCHES
Ultrasonic sensor HC-SR04 is used to measure distance in range of 2cm-400cm with accuracy of 3mm. The sensor module consists of ultrasonic
transmitter, receiver and the control circuit.
The ultrasonic sensor module works on the natural phenomenon of ECHO of sound. A pulse is sent for about 10us to trigger the module. After which the
module automatically sends 8 cycles of 40 KHz ultrasound signal and checks its echo. The signal after striking with an obstacle returns back and is
captured by the receiver. Thus the distance of the obstacle from the sensor is simply calculated by the formula given as
Here we have divided the product of speed and time by 2 because the time is the total time it took to reach the obstacle and return back. Thus the time to
reach obstacle is just half the total time taken.
Learn Code
Fly Drones
See your code come to life. Perfect
for beginners. Used in schools.
robolink.com
OPEN
By using this methods we gets distance from sensor to water surface. After it we need to calculate water level.
Now we need to calculate the total length of water tank. As we know the length of water tank then we can calculate the water level by subtracting
resulting distance coming from ultrasonic from total length of tank. And we will get the water level distance. Now we can convert this water level in to the
percent of water, and can display it on LCD. The working of the complete water level indicator project is shown in below block diagram.
(/fullimage?i=circuitdiagram_mic/Water-level-
controller-circ.gif)
SPONSORED SEARCHES
schematic software
In this circuit Ultrasonic sensor module is placed at the top of bucket (water tank) for demonstration. This sensor module will read the distance between
sensor module and water surface, and it will show the distance on LCD screen with message “Water Space in Tank is:”. It means we are here showing
empty place of distance or volume for water instead of water level. Because of this functionality we can use this system in any water tank. When empty
water level reaches at distance about 30 cm then Arduino turns ON the water pump by driving relay. And now LCD will show “LOW Water Level” “Motor
turned ON”, and Relay status LED will start glowing
Now if the empty space reaches at distance about 12 cm arduino turns OFF the relay and LCD will show “Tank is full” “Motor Turned OFF”. Buzzer also
beep for some time and relay status LED will turned OFF.
Learn Code
Fly Drones
See your code come to life. Perfect for beginners. Used in schools.
robolink.com OPEN
Programming
To program Arduino for water level controller, first we define all the pin that we are going to use in the project for interfacing external devices like relay,
LCD, buzzer etc.
#define trigger 10
#define echo 11
#define motor 8
#define buzzer 12
Then we initialize all the devices used in project.
lcd.begin(16,2);
pinMode(trigger,OUTPUT);
pinMode(echo,INPUT);
pinMode(motor, OUTPUT);
pinMode(buzzer, OUTPUT);
lcd.print(" Water Level ");
lcd.setCursor(0,1);
lcd.print(" Indicator ");
delay(2000);
Now initialize the ultrasonic sensor module and read time of sending and receiving time of ultrasonic waves or sound by using pulseIn(pin). Then
perform calculations and display the result on 16x2 LCD by using appropriate functions.
digitalWrite(trigger,HIGH);
delayMicroseconds(10);
digitalWrite(trigger,LOW);
delayMicroseconds(2);
time=pulseIn(echo,HIGH);
distance=time*340/20000;
lcd.clear();
lcd.print("Water Space In ");
lcd.setCursor(0,1);
lcd.print("Tank is: ");
lcd.print(distance);
lcd.print("Cm");
After it we check conditions if water tank is full or water level is LOW, and take actions accordingly.
Danubius Hotels
Budapest
Just For You, Just Now:
10% Off Our Best Prices.
Danubius Hotels Group
Don't Miss Out!
Code
#include <LiquidCrystal.h>
#define trigger 10
#define echo 11
#define motor 8
#define buzzer 12
LiquidCrystal lcd(7,6,5,4,3,2);
float time=0,distance=0;
int temp=0;
void setup()
{
lcd.begin(16,2);
pinMode(trigger,OUTPUT);
pinMode(echo,INPUT);
pinMode(motor, OUTPUT);
pinMode(buzzer, OUTPUT);
}
void loop()
{
lcd.clear();
digitalWrite(trigger,LOW);
delayMicroseconds(2);
digitalWrite(trigger,HIGH);
delayMicroseconds(10);
digitalWrite(trigger,LOW);
delayMicroseconds(2);
time=pulseIn(echo,HIGH);
distance=time*340/20000;
lcd.clear();
lcd.print(distance);
lcd.print("Cm");
delay(2000);
{
digitalWrite(motor, LOW);
digitalWrite(buzzer, HIGH);
lcd.clear();
delay(2000);
digitalWrite(buzzer, LOW);
delay(3000);
temp=1;
}
{
digitalWrite(motor, LOW);
lcd.clear();
lcd.setCursor(0,1);
lcd.print("Motor Turned OFF");
delay(5000);
}
else if(distance>30)
{
digitalWrite(motor, HIGH);
lcd.clear();
lcd.print("LOW Water Level");
lcd.setCursor(0,1);
delay(5000);
temp=0;
}
TAGS ARDUINO (/TAGS/ARDUINO) ARDUINO UNO (/TAGS/ARDUINO-UNO) WATER LEVEL INDICATOR (/TAGS/WATER-LEVEL-INDICATOR)
RELATED CONTENT
(/microcontroller-projects/arduino-multitasking-using-millis-in-arduino)
(/microcontroller-projects/arduino-nodejs-tutorial-control-led-brightness-with-web-interface)
Node.js with Arduino: Controlling Brightness of LED through Web Interface (/microcontroller-projects/arduino-nodejs-tutorial-control-led-
brightness-with-web-interface)
(/microcontroller-projects/raspberry-pi-with-lora-peer-to-peer-communication-with-arduino)
(/microcontroller-projects/diy-location-tracker-using-gsm-sim800-and-arduino)
(/microcontroller-projects/rs485-modbus-serial-communication-using-arduino-uno-as-slave)
(/microcontroller-projects/arduino-sw-420-vibration-sensor-module-interfacing)
(/microcontroller-projects/rs485-serial-communication-between-arduino-and-raspberry-pi)
(/microcontroller-projects/arduino-7-segment-display-clock)
Email Address *
Name
Country
United States of America
Subscribe
PREVIOUS POST
PC Controlled Home Automation using Arduino (https://circuitdigest.com/microcontroller-projects/arduino-home-automation-
project)
NEXT POST
Alarm Clock using ATmega32 Microcontroller (https://circuitdigest.com/microcontroller-projects/digital-alarm-clock-using-avr)
COMMENTS
Mohammed S M Nayon
Dec 16, 2015
adane mekonnen
Apr 04, 2018
Abhishek (/users/abhishek)
Dec 17, 2015
(/users/abhishek)
Collect the code means? Check this article for Getting started with Arduino
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
(http://circuitdigest.com/microcontroller-projects/arduino-uno-led-blinking)
iman maulana
Dec 30, 2015
Can you tell me how to connect arduino to water pump using relay modul 4 channel?
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
Maddy (/users/maddy)
Feb 08, 2016
(/users/maddy)
use only one channel or one relay.
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form)
to post comments
suresh
Jan 29, 2016
Hi sir,
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
I have two tank and I like to monitor one tank with ultrasonic sensor with this circuit , Is it possible ?
how can I make connection and how modify the codes
F8EBL radio
Feb 03, 2016
WARNING !!
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
In the circuit diagram above,, arduino +V supply is connected to +12v unreg. source.
Should be fed by +5V regulator.
relay should have 12 V supply. .
So take care to swap those supply if you want it to work and not smoke..
As this circuit involves lethal voltages, don t try to reproduce it if you don t know anything about electricity / electronics, .
F8EBL Radio..... The 'Vin' on the Aeduino Uno is between 7 to 12v and as per the schematic diagram it is being sent from
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form)
to post comments
a battery. All should be fine.
Veilantah Ramirez
Jul 15, 2017
boaz
Feb 04, 2016
saddam khan
Feb 07, 2016
temp is used as a variable.
shriyash patil
Jan 09, 2018
temp is a temperory variable created to save the data for a temporarily use
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form)
to post comments
suman
Feb 12, 2016
Bongumusa
Feb 28, 2016
On the component list I see PVT, but on the schematic diagram I can't locate it, please help me with that one
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
i have insert this coding into the arduino uno r3 module in proteus to do the simulation of the program. but it only light up the
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
lcd display without showing any information on the lcd..thank you for your guidance
Abhishek (/users/abhishek)
Mar 28, 2016
(/users/abhishek)
How are you simulating Ultrasonic sensor?
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form)
to post comments
adli
Feb 13, 2017
by using proteus 8, after entrepreting the data of ardunio software, then insert it to arduino uno in the proteus. the try
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-
form) to post comments
do the simulation process. same as for me, it only light up the lcd but not showing any result. this is because the sensor
not detecting any distance
sanoj k
Mar 17, 2016
sir ,
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
can u please tell which relay i should use in this circuit. i am having a motor which takes 0.37kw power (230v from the mains.
can i use small 5v em relay ? or should i use SSR ?
Abhishek (/users/abhishek)
Mar 28, 2016
(/users/abhishek)
yes, you can use 5v Relay.
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form)
to post comments
Rajib shresths
Mar 22, 2016
Abhishek (/users/abhishek)
Mar 28, 2016
(/users/abhishek)
Its a core library of Arduino, you don't need to install it, it is already there.
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form)
to post comments
Anthony Tortolani
Apr 15, 2016
hi, I'm a little new with Arduino, I'm getting error: 'lcd' was not declared in this scope, can you please tell me what I'm doing
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
wrong? I copied and pasted the whole code in the void setup section, tried to install adafruit libraries, but still getting this error.
Anthony Tortolani
Apr 16, 2016
Hi, I was pasting the code on a wrong way, I already fixed that, but still having problems when checking the code, I have this
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
error:
Please help!
Gautam Kr. Mandal
Jun 01, 2016
Dear Sir, I've decided to take up this project for my water tank. By please clear following doubts. Will this circuit switch on or
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
off the pump and display the full or empty condition only? If I want intermediate status of water level, what code is required? Pl give
that code for continuous monitoring of water level. Moreover the circuit is meant for display to be placed near the pump only? If I
want to keep the controller i.e arduino with display at remote place with minimum no. of long cabling, what to do? Thank you.
syed ehsan
Jun 04, 2016
i have insert this coding into the arduino uno r3 module in proteus to do the simulation of the program. but it only light up the
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
lcd display without showing any information on the lcd..thank you for your guidance
yedukn
Jun 10, 2016
When the program runs and if the conditions are going to turn on the motor, the 8th pin continuously becomes ON until the
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
condition for OFF executes.
ie, if we add
Serial.println("ON");
with digitalWrite(motor,HIGH);
ON
ON
ON
ON
ON
ON
Does this makes any problem to the relay driver or to the relay or to the motor? Does the program needs any modifications or not?
Niraj
Jun 25, 2016
abhi
Aug 22, 2016
i try to make this project through this way. but in simulation in proteus the lcd display did not showing any type of information
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
. can you please help us. i never make any changes in programing too...
Abhishek (/users/abhishek)
Aug 22, 2016
(/users/abhishek)
Try changing the code LiquidCrystal lcd(7,6,5,4,3,2); to LiquidCrystal lcd(2,3,4,5,6,7);
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form)
to post comments
dexter
Dec 18, 2016
krishna
Aug 30, 2018
On the component list I see 7806 and PVT, but on the schematic diagram I can't locate it, please help me..I want to do this
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
project.
Maddy (/users/maddy)
Dec 10, 2016
(/users/maddy)
IC 7806 is clearly shown in circuit diagram and PVT is green color's terminal block on Relay board, you
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form)
to post comments
can see in image on the top.
ell
Nov 25, 2016
hello, the code is giving me some errors when i try to run it with turbo C.
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
Keito
Jan 17, 2017
Is it also possible if I wan't to add a dispense in the water controller? Example, if I want to maintain this specific water level,
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
any excess water added will be dispense automatically.
irfan
Jan 28, 2017
when i can past this code lcd cannot display any think plzz urgently tell me about it
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
NITHIN S U
Feb 09, 2017
Dear Sir, I've decided to take up this project for my water tank. By please clear following doubts. Will this circuit switch on or
off the pump and display the full or empty condition only? If I want intermediate status of water level, what code is required?
Pl give that code for continuous monitoring of water level. Moreover the circuit is meant for display to be placed near the
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
pump only? If I want to keep the controller i.e arduino with display at remote place with minimum no. of long cabling, what to do?
Thank you.
Nasir
Apr 18, 2017
Hey.
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
I am willing to make this for my water tank which is located at the 3rd floor of my house.
My question is that if i place Ultrasonic sensor inside the tank and place remaining assembly at ground floor then should i use any
amplifier for the Ultrasonic sensor or the transmitted signal will be enough to travel to ground floor without any disturbance?
Mohammed Sulaiman
Jul 17, 2017
I didn't understand why you use U2 (ULN2003) for control a 6V or 12V relay? it's enough to control with BC547 and it will be
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
more power saver.
chucky
Jul 24, 2017
i want to use a relay instead of a motor. can some one help me with the code, im new to ardiuno
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
sachin mahajan
Jul 24, 2017
sir, what is the need of steeoer motor in these project. can i use simple motor instead of steeper motor
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
Luyanda
Aug 05, 2017
How to add keypad in this circuit to selecm9t required water level please help
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
Omair
Sep 24, 2017
Hello, Instead of displaying water level on LCD, can we send sms to predefine mobile numbers using GSM module but it
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
should not flood the inbox with messages that tank is now emply. if yes then can someone help me with the software code as I am
new to this and I have no software background. My objective is i need to automate underground water tank and tank notify me
when the water level reached to certain low level so that i can call the water company and they come and fill up my underground
tank.
samson
Oct 23, 2017
i copied the simulation and code correctly but only the motor is rotate, buzzer and lcd are not working what may be the fault
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
manoj
Oct 26, 2017
manpreet singh
Nov 11, 2017
hello sir
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
I have
1 sound senseor
2 HC-05 Buletooth module
sir,how to interface soundsensor with HC-05 module when tank is fullHC-05 trans =mit signal to other HC-05 module and get
output on Buzzer or LCd
AISHA (/users/aisha-0)
Nov 14, 2017
(/users/aisha-0)
Hi manpreet,
suriya
Nov 15, 2017
MOATH AL-HARBI
Nov 19, 2017
Sabyasachi pal
Dec 21, 2017
Assaf faisal
Jan 06, 2018
Hi
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
Can we get the water level signal sent to a mobile by a Bluetooth or remote signal device connected to the board.
dipen
Feb 08, 2018
we compleate this circuit but code is wrong in this site lcd is light up but no words are visible please send right code
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
Vaishnavi
Mar 14, 2018
I've tried this project and connected everything as directed. But mu lcd is not showing any display in it. Plzz help me out sir
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
as early as possible
sukruth
Mar 15, 2018
Can i use this automatic water level indicator and controller as fuel level indicator.If yes please provide the circuit diagram for
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
the fuel level indicator also
Victor
Mar 16, 2018
Hello there..please can i replace the arduino uno with an arduino nano?..if yes,what changes do i make to the schematic and
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
code
AISHA (/users/aisha-0)
Mar 16, 2018
(/users/aisha-0)
Yes you can use nano, no changes are needed in the code and hardware, just connect the pins on
Kapil Chouhan
Mar 17, 2018
Hi sir... I wanted to know what's the use of temp here and what kind of data it is holding.
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
Thomas Joseph
Mar 26, 2018
Dear Sir,
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
Very interesting project and it is working fine … i have request on this program.
As per this code motor turn ON water level less than “X” level, OK, the motor started pumping the water ;But in case lower tank was
empty or some other reasons the TANK water level not increasing from the “X” level, we have to TURN OFF the motor for safety
purpose.
For example: current water level is >60 CM and motor is ON,BUT after 3 MIN still water level not increasing or not reached a
specific level( Eg: 50CM) we have to turn of the motor .
So this is my requirement how do I resolve this, could you please help me.
Arunkumar S
Mar 28, 2018
SIR MY PROJECT USING SENSOR IS LEVEL SENSOR SIR . I NEED HELP FOR PROGRAM SIR AUTOMATIC WATER LEVEL
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
PROGRAM I S DOUBT SIR SO PLEASE PROGRAMING SEND ME SIR
sukruth
Apr 03, 2018
Code is executed and uploading to arduino but lcd did not showing any display.please what can i do tell as soon as possible.
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
saloni lohiya
Apr 06, 2018
i have complied the code but nothing is being displayed on lcd ,what should i doo,
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form)
to post comments
ARUN KUMAR
Apr 11, 2018
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
By using this circuit and diagram everything is working instead of LCD. I checked my connection again and again but i cant find the
problem then i search in google and i do it another connection then lcd glow but it cant show tank is full ya motor started.please
suggest me wht am i do
Andri
Apr 11, 2018
Yadhuk
Jun 04, 2018
Andrea F
Jul 02, 2018
Thaks for the idea, so I have some problems to turn off the pum water, Could you help me?
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
Samuela Batiniy...
Jul 26, 2018
Hello Group,
Log in (/user/login?destination=node/218%23comment-form) or register (/user/register?destination=node/218%23comment-form) to
post comments
Just a humble query. Is there a Ultrasonic Sensor Module that can go further than 400cm. Will like to use for a taller tank.
Please advise.
Thanks
TI TRAINING VIDEOS
Solutions for Fast Charging Electric Vehicle Supply Equipment (EVSE) Design
(https://ad.doubleclick.net/ddm/clk/440294741;243805998;s?https://training.ti.com/solutions-fast-charging-electric-vehicle-
supply-equipment-evse-design?cu=1127787&HQS=corp-otpp-null-training_videos-asset-tr-CircuitDigest-in&DCM=yes
&https%3A%2F%2Ffanyv88.com%3A443%2Fhttps%2Ftraining.ti.com%2Fsolutions-fast-charging-electric-vehicle-supply-equipment-evse-
design%3Fcu=1127787&HQS=corp-otpp-null-training_videos-asset-tr-CircuitDigest-in&DCM=yes_)
High Voltage Solutions in HEV/EV Part I - On Board Chargers and Charging Stations
(https://ad.doubleclick.net/ddm/clk/440294741;243805998;s?https://training.ti.com/high-voltage-solutions-hevev-part-i-board-
chargers-and-charging-stations?HQS=corp-otpp-null-training_videos-asset-tr-CircuitDigest-in&DCM=yes
&https%3A%2F%2Ffanyv88.com%3A443%2Fhttps%2Ftraining.ti.com%2Fhigh-voltage-solutions-hevev-part-i-board-chargers-and-charging-stations%3FHQS=corp-
otpp-null-training_videos-asset-tr-CircuitDigest-in&DCM=yes_)
High Voltage Solutions in HEV/EV Part II - DC/DC Converters and Traction Inverters
(https://ad.doubleclick.net/ddm/clk/440294741;243805998;s?https://training.ti.com/high-voltage-solutions-hevev-part-ii-dcdc-
converters-and-traction-inverters?cu=1134585&HQS=corp-otpp-null-training_videos-asset-tr-CircuitDigest-in&DCM=yes
&https%3A%2F%2Ffanyv88.com%3A443%2Fhttps%2Ftraining.ti.com%2Fhigh-voltage-solutions-hevev-part-ii-dcdc-converters-and-traction-
inverters%3Fcu=1134585&HQS=corp-otpp-null-training_videos-asset-tr-CircuitDigest-in&DCM=yes_)
How to Design Multi-kW DC/DC Converters for Electric Vehicles (EVs) - EV System Overview
(https://ad.doubleclick.net/ddm/clk/440294741;243805998;s?https://training.ti.com/how-design-multi-kw-dcdc-converters-
electric-vehicles-evs-ev-system-overview?cu=1128387&HQS=corp-otpp-null-training_videos-asset-tr-CircuitDigest-in&DCM=yes
&https%3A%2F%2Ffanyv88.com%3A443%2Fhttps%2Ftraining.ti.com%2Fhow-design-multi-kw-dcdc-converters-electric-vehicles-evs-ev-system-
overview%3Fcu=1128387&HQS=corp-otpp-null-training_videos-asset-tr-CircuitDigest-in&DCM=yes_)
LATEST POSTS
(/news/lens-reduction-type-5340-pixel-by-3-line-linear-image-
sensor-for-office-automation-and-industrial-equipment)
Lens Reduction Type, 5340-Pixel by 3-line Linear Image Sensor for Office Automation and Industrial Equipment (/news/lens-reduction-type-
5340-pixel-by-3-line-linear-image-sensor-for-office-automation-and-industrial-equipment)
(/microcontroller-projects/arduino-multitasking-using-millis-in-
arduino)
Arduino Multitasking Tutorial - How to use millis() in Arduino Code (/microcontroller-projects/arduino-multitasking-using-millis-in-arduino)
(/article/introduction-to-lora-and-lorawan-what-is-lora-and-how-
does-it-work)
Introduction to LoRa and LoRaWAN: What is LoRa and How Does It Work? (/article/introduction-to-lora-and-lorawan-what-is-lora-and-how-
does-it-work)
(/news/switcher-ics-with-integrated-900v-mosfets-targeting-480-
vac-industrial-applications)
Switcher ICs with Integrated 900V MOSFETs targeting 480 VAC industrial applications (/news/switcher-ics-with-integrated-900v-mosfets-
targeting-480-vac-industrial-applications)
(/microcontroller-projects/arduino-nodejs-tutorial-control-led-
brightness-with-web-interface)
Node.js with Arduino: Controlling Brightness of LED through Web Interface (/microcontroller-projects/arduino-nodejs-tutorial-control-led-
brightness-with-web-interface)
(/tutorial/op-amp-integrator-circuit-working-construction-
applications)
Operational Amplifier Integrator Circuit: Construction, Working and Applications (/tutorial/op-amp-integrator-circuit-working-construction-
applications)
Lens Reduction Type, 5340-Pixel by 3-line Linear Image Sensor for Office Automation and Industrial Equipment (/news/lens-reduction-
type-5340-pixel-by-3-line-linear-image-sensor-for-office-automation-and-industrial-equipment)
(/news/lens-
reduction-
type-5340-
pixel-by-3-
line-linear-
image-
sensor-for-
office-
automation-
and-
industrial-
equipment)
Switcher ICs with Integrated 900V MOSFETs targeting 480 VAC industrial applications (/news/switcher-ics-with-integrated-900v-
mosfets-targeting-480-vac-industrial-applications)
(/news/switcher-
ics-with-
integrated-
900v-
mosfets-
targeting-
480-vac-
industrial-
applications)
1200V Schottky diode increases efficiency for EV DC charging and other industrial applications (/news/1200v-schottky-diode-
increases-efficiency-for-ev-dc-charging-and-other-industrial-applications)
(/news/1200v-
schottky-
diode-
increases-
efficiency-
for-ev-dc-
charging-
and-other-
industrial-
applications)
Low Cost 2W DC/DC Converters in Open-frame SMD (/news/low-cost-2w-dcdc-converters-in-open-frame-smd)
(/news/low-
cost-2w-
dcdc-
converters-
in-open-
frame-smd)
(/news/infineon-
xensiv-
tli4971-
current-
sensors-for-
industrial-
applications)
User login
E-mail or username *
Password *
Log in
Connect with us on social media and stay updated with latest news, articles and projects!
(https://www.linkedin.com/company/circuit-
(https://www.facebook.com/circuitdigest/)
(https://twitter.com/CircuitDigest)
(https://www.youtube.com/channel/UCy3CUAIYgZdAOG9k3IPdLm
(https://www.instagram.com/circuit_digest/)
(https://www.pinterest.com/circuitdigest/)
digest/)
CATEGORIES
POPULAR
ELECTRONICS FORUM (HTTPS://CIRCUITDIGEST.COM/FORUMS) CALCULATORS (HTTPS://CIRCUITDIGEST.COM/CALCULATORS)
NEWSLETTER
Subscribe
Privacy Policy (http://circuitdigest.com/privacy-policy) | Cookie Policy (https://circuitdigest.com/cookie-policy) | Terms of Use (https://circuitdigest.com/terms-of-use) | Contact
Us (http://circuitdigest.com/contact) | Advertise (http://circuitdigest.com/advertise)