Skip to main content

How to make very simple Water Sensor Circuit?

Hi folks, today I am going to discuss about water sensor circuit

Water Level Sensor Circuit: when water reaches to the sensor set level then LED gets switched ON.

Buzzer, also, can be used to give alarm, along with LED indication.


Material:
1.     General Purpose PCB 2x2 inch.
2.     Resistor: 10K                     ---------- 2 Nos.
3.     Resistor: 15K                     ----------1 No.
4.     Resistor: 1K                       ----------1 No.
5.     Transistor: 2222A              ---------- 2 Nos.
6.     Capacitor: 22uF/25V         ---------- 1 No.
7.     Red LED: 5mm                  ----------1 No.
8.     Black & Red wire               ---------- 1 meter.
9.     9V battery with connector ---------- 1 No.

Tool:

Cutter, solder wire, soldering iron etc.



How does it work?
With the help of sensor, conduction in water is tested and signal is applied to the base and it is amplified by the transistor.

When there is no water on sensor terminals, no voltage signal is on the base of Q1, base of Q1 remains low; it doesn’t conduct.
Base of Q2 is low, so Q2 doesn’t conduct and LED remains OFF.
It means water level is lower than the set level.

When water level reaches to the sensor terminals, there is some low voltage at base of Q1 and it conducts.
Current flows through Q1 Collector – Emitter, and voltage appears across R3, this voltage is applied to the base of Q2, and it also conducts.
When Q3 conduct, current flows through LED and it glows,
If you put a buzzer in place of LED OR parallel with LED then buzzer also gets switched ON.


Steps
1-      Mount all the components on the PCB according to the circuit diagram.
2-      Connect the battery with correct polarity. 
3-     Connect the both terminals of sensor together to test initially.
4-     Put the sensor wire into the water, LED should glow. 

Is it glowing?

Yes?

Great!

So we have water level sensor now,
Sensor wire length can be increased according to our need.

The sensor is nothing but a plastic pipe with two screws over it for water sensing by current conduction.





NOTE: NEVER CONNECT THE BATTERY IN WRONG POLARITY SINCE IT IS HAVING AN ELECTROLYTIC CAPACITOR AND IT MAY BE DAMAGED AND MAY DAMAGE YOU TOO. 

Comments

  1. nice projects can you make electricity detector please

    ReplyDelete
  2. nice projects can you make electricity detector please

    ReplyDelete
  3. Great post.Thanks for sharing this article with us.Keep posting!!!
    Water level sensor in Chennai

    ReplyDelete
  4. Hi, can you make a simple sensor with two rod for an aquaponic system that measure ph etc ...

    ReplyDelete

Post a Comment

Popular posts from this blog

How to Make Automatic Room Light Controller Without Microcontroller

You must have noticed in some offices or hotels, when nobody is in gallery or washroom, the light remains OFF but when somebody enters the place, light switches ON automatically. In this post I am going to teach you how to make this circuit. Before going ahead I would like to tell you that this is VERY EASY circuit. For this circuit the material we need is… PIR Motion sensor General Purpose PCB - 5x5 cm. Transistor 2222N – 1 No. Relay 5V – 1 No. 1K/0.250W – 2 Nos. 10K/0.250W – 1 No. IN4007 – 2 Nos. LED 3mm – 1 No. Connector – 4 Nos. Few wires. Relay Circuit Concept : We can use any relay of 12V, 24V, 5V etc. but we have to consider power supply or battery we will use. Since 5V power supply is easily available and 9V battery can also be used for 5V output (after using 7805 regulator if needed). So I am using 5V relay. PIR sensor has three terminals, One for 5Vdc Second for Gnd (0V). Third for ...

How to drive high voltage/current load by small voltage signal from a microcontroller?

Sometimes we need to control or drive a high voltage and heavy current load by a small voltage signal. For example, if you want to control water motor with your microcontroller output. We know that microcontroller gives only 5v output which is not sufficient to drive a heavy motor. This circuit, about which this post is, is very-very useful for electronics engineer and hobbyist. So pay attention! For this circuit the material we need is… General Purpose PCB - 5x5 cm. Transistor KN 2222A (TO-92) - 1 No. Relay 5V – 1 No. 1K/0.250W – 2 Nos. 10K/0.250W – 1 No. IN4007 – 2 Nos. LED 3mm – 1 No. Connector – 4 Nos. Few wires. Tools. Concept: Weak signal triggers the transistor and transistor acts as a switch for the relay. You can use any relay of 12V, 24V, 5V etc. but we have to consider power supply or battery we will use. Since 5V power supply is easily available and 9V battery can also be used for 5V output (after using 7805 regulator if needed)....

How to control digital output with serial monitor in Arduino

Hello Friends, in this blog we will be controlling digital output with serial monitor command. First let’s understand the working of serial monitor. Serial monitor in Arduino IDE is a tool which allows communication between the computer and Arduino board via a serial connection, normally we use USB cable for connection. What are the features of Serial Monitor? It shows the data sent from the Arduino board by using the functions like Serial.print() or Serial.println(). It allows to send text or numeric data to the Arduino board, which can be read by function like, Serial.read() or Serial.parseInt(), thereafter you can use this data for further analysis and action. We can use this tool for debugging and monitoring the function of the sketch. There is a procedure to use the serial monitor, below are the steps given. First initialize the serial communication in the sketch as given below. Normally baud rate is set 9600.  Void setup(){          Serial.begin(9600)...