Site icon Circuit Ideas for You

How to Create a Water Level Sensor Circuit with Arduino

For fun and learning project.

We learn basic electronics, coding and sensor uses.

Here we will learn How to Create a Water Level Sensor Circuit with Arduino

This guide teaches us how to make water sensor.

It is good for stopping overflow, checking water in tank or auto watering plants.

We can use Arduino Uno which is easy and flexible, water sensor, IC 7809, LED and resistor.

Follow steps to connect parts, write code, send to Arduino and read water level data to do actions.

Coding:

const int waterSensorPin = 2; // Replace 2 with the actual pin number used for the water level sensor

void setup() {
  pinMode(waterSensorPin, INPUT);
  Serial.begin(9600);
}

void loop() {
  int sensorValue = digitalRead(waterSensorPin);

  if (sensorValue == HIGH) {
    Serial.println("Water detected");
  } else {
    Serial.println("No water detected");
  }

  delay(1000); // Delay for 1 second
}

Code Explanation:

Circuit Working:

Parts List:

ComponentQuantity
Resistors
220Ω 1/4 watt1
Semiconductors
Arduino UNO board1
IC 78091
Water level sensor1
Red LED 5mm 20mA1
Multimeter1
Probes Red and Black2

In this circuit when water drop falls in glass the output pin voltage goes up with water level.

This happens because sensor part on PCB feels water and changes voltage.

Water level sensor has two probes.

One probe goes in water and lets current flow and other stays dry as reference.

IC 7809 gives steady 9V power to Arduino and sensor.

Sensor module has 3 pins and 2 are power pins.

Connect them to Arduinos 5V and GND.

This makes circuit work well.

LED and resistor show water present or not and if water is found then LED turns ON.

Resistor stops too much current and saves LED from burning.

How to Build:

To build a Water Level Sensor Circuit with Arduino following steps should be followed for connections:

Testing:

Conclusion:

Using parts from circuit diagram and steps above we can make working circuit that checks if water is there or not.

We can also add more smart features later like turning on alarm or controlling other devices based on water level.

References:

Simple water level indicator with input and output project

Exit mobile version