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

Difference between Bootloader & Firmware Update

Updating the bootloader and updating the firmware in a microcontroller are two distinct processes, each serving different purposes and involving different steps. Here's a breakdown of the differences: Bootloader Update Purpose : The bootloader is a small program that runs before the main application. It is responsible for initializing the microcontroller and loading the main application firmware. Updating the bootloader might be necessary to add new features, fix bugs, or improve the boot process.   Process : 1.       Enter Bootloader Mode : To update the bootloader, the microcontroller must be put into a special mode. This often involves setting specific pins, pressing buttons, or using a specific command through an existing firmware interface. 2.      Communication Interface : The bootloader update typically uses a specific communication interface such as UART, SPI, I2C, or USB. 3.   ...

AND Logic Gate by Transistors

Creating an AND gate using transistors is a fundamental exercise in digital electronics. In this post, I will guide you through the process of building an AND gate with transistors, explaining each step in detail.   What is an AND Gate? An AND gate is a basic digital logic gate that outputs TRUE or HIGH (1) only when all its inputs are true or high. If any of the inputs are false or low (0), the output is false or low (0). The truth table for a two-input AND gate is as follows: Input A Input B Output 0 0 0 0 1 0 1 0 0 1 1 1   Components Needed To build an AND gate, you will need the following components: NPN Transistors: BC547 (2 Nos.); Q1, Q2. Resistors : 10K (2 Nos) - R1, R2. Resistors : 1K (1 No) - R3. LED: 5mm Red (1 No) – L1, for output indication. Switches: ...

How to control Digital Output using Serial Monitor

Hello Friends, in this blog I will share with you how to control Arduino Digital Output with Serial Monitor. I am using One Arduino Uno, One 330 ohm resistor, One LED, 2 connecting cable, and one small Bread board. LED is connected to pin number 12, with the help of resistor 330 ohm. Below is the sketch: // Code by Deepak Sharma // The code is to control one digital output by serial monitor const int LED = 12; void setup() {   // put your setup code here, to run once:   Serial.begin(9600);   pinMode(LED, OUTPUT); } void loop() {   // put your main code here, to run repeatedly:   if (Serial.available()) {     String input = Serial.readStringUntil('\n');     input.trim();     if (input.equalsIgnoreCase("ON")) {       digitalWrite(LED, HIGH);       Serial.println("LED ON");     }     else if (input.equalsIgnoreCase("OFF")) {       digitalWrite(LED, LOW);     ...