Water Level Indicator Using Arduino

Wireless Water Level Indicator Using Ultrasonic sensor & Arduino is an amazing and very useful project. The objective of this project is to notify the user the amount of water that is present in the overhead water tank. This project can be further enhanced to control the water level in the tank by turning it ON, when the water level is LOW, and turning it OFF when the water level is HIGH. Thus, the Arduino water level indicator helps in preventing wastage of water in overhead tank. This project is wireless so, it is easy to install and it can work up to 100 meters.

In this project two circuits are used: a transmitter circuit and a receiver circuit. The transmitter circuit makes use of an ultrasonic sensor to measure the water level in terms of distance. This data is sent to the receiver circuit using RF communication. The water level is shown in terms of percentage on a 16×2 LCD module, which is connected to receiver circuit.

Components Used

ComponentsSpecificationQuantity
ArduinoNano2
Ultrasonic SensorHC-SR041
RF Transmitter Receiver PairASK 4331
LCD 16x21
Preset10K1
SwitchDPDT (PCB Mount)2
Battery9 Volt2
Battery Holder2

Working

In the project two circuits are used, First is the transmitter and second is the receiver. An Ultrasonic sensor is used in the transmitter circuit, which measures the distance of water level from the upper point of the bottle or Tank. The distance is measured in centimeters and sent to receiver circuit using RF communication.

Arduino Water Level Indicator
Arduino Water Level Indicator

 

Receiver circuit receives the data from transmitter circuit and converts it in terms of the percentage and shows on LCD.

Water Level Indicator Using Arduino
Water Level Indicator Using Arduino

 

Ultrasonic sensor has two openings, one is Trigger and the other is Echo. Trigger makes high frequency sound waves. These sound waves are passed through the tank from top to bottom. The sound waves hit the water and are reflected back in the form of Echo waves. The Echo opening receives the Echo waves. The water level sensor Arduino measures the time between Echo and Trigger. This traveled distance is directly proportional to the time.

Water Level Indicator Using Ultrasonic Sensor
Water Level Indicator Using Ultrasonic Sensor

Water Level Indicator Using Arduino – Video Demonstration

Arduino Water Level Indicator Circuit

In this project two circuits are used

  • Transmitter Circuit –   Transmitter circuit is shown in the figure below. Fig1, in this circuit an Ultrasonic sensor is connected to pin D9 and D10 pin of Arduino. Ultrasonic sensor is powered by Vcc and GND pin, these pins are connected to Vcc and GND pin of the Arduino. The measured data is transmitted by RF transmitter. RF transmitter’s data pin is connected to D4 pin of Arduino Nano. RF transmitter’s Vcc and GND pins are connected to Vcc and GND pins of the Arduino. In this transmitter circuit an Antenna is used which is connected to ANT pin of RF transmitter, whole circuit is powered by 9 volt battery. The battery is connected to Vin and GND pin of Arduino.
Water Level Indicator Using Arduino - Transmitter Circuit
Water Level Indicator Using Arduino – Transmitter Circuit

 

  • Receiver Circuit – In the receiver Circuit, RF Receiver is used for receiving data from the transmitter. Data pin of RF Receiver is connected to D4 pin of Arduino. Water level is shown on LCD and LCD is connected to Arduino from pin D4 to D9. LCD is powered by Vcc and GND pin using the Arduino, the contrast of LCD is changed by moving the preset, which is connected to pin 3 of LCD. Receiver circuit is powered by a 9 Volt battery through a switch, which is connected between Vcc and GND pin of the Arduino. Circuit is shown in the figure below.
Water Level Indicator Using Arduino - Receiver Circuit
Water Level Indicator Using Arduino – Receiver Circuit

 

The above shown circuit diagrams of transmitter and receiver circuits are more than enough to make one by yourself on a breadboard or Zero PCB.

If you are good in PCB Etching, you can use the images given below.

Water Level Indicator Using Arduino - PCB Design
Water Level Indicator Using Arduino – PCB Design

 

Water Level Indicator Using Arduino - PCB
Water Level Indicator Using Arduino – PCB

 

RF Receiver
RF Receiver

 

RF Transmiitter
RF Transmiitter

Program/Code

Download – Program for Water Level Controller (Transmitter)

Download – Program for Water Level Controller (Receiver)

In this project two circuits are used, both are powered by Arduino Nano. RF module is used for the communication between the Transmitter and the Receiver circuits.

How to Attach Library

  1.  Download the library file from the link https://github.com/sui77/rc-switch.
  2. Extract the file rc-switch-master.
  3. Copy the folder inside rc-switch-master folder.
  4. Paste the folder at location Documents> Arduino> library.
  5. Close the Arduino IDE software (if opend).
  6. Open the Arduino IDE.
  7. Click on file >Example
  8. If library is attached, you can see the rc-switch-master in Example list.

Transmitter

In the coding of the transmitter side, two header files are used. First is RCSwitch.h, which is used for RF transmitter and the second is Ultrasonic.h, which is used for the ultrasonic sensor.

Now pins of ultrasonic sensor is declared by the name ultrasonic in line 4, pin11 is Trig and pin10 is Echo. In the line 5 RCSwitch is declared for the transmitter by name “mySwitch”. In the line 7 an integer is declared by the name “i”.

In the void setup Transmitter is enabled by function “mySwitch.enableTransmit(4)”, where transmitter’s data pin is connected to pin D4 of the Arduino.

In the void loop, the distance is measured by function “ultrasonic.Ranging(CM)” and it is assigned in integer “I”, this distance is measured in centimeters.

In the line 15, the measured distance is transmitted by function “mySwitch.send(i, 24)”, where “i” is the distance and 24 is the bit format. After all “delay” of 100 milliseconds are used, which means Arduino sends the data after every 100 milliseconds.

Receiver

In the receiver side, two header files are used, The first is “RCSwitch.h” which is used for RF communication between the Transmitter and the Receiver and the second is “LiquidCrystal.h”, which is used for LCD display.

In the line 4, Arduino pins are declared, which are connected to LCD. Total 6 pins are connected to Arduino that are D4, D5, D6, D7, D8, D9. In the line 5, “RCSwitch” is declared by the name “mySwitch”.

In the line 7, a float is declared by the name “level”, which shows the water level and in the line 9 and 10 two integers are declared by name “Hval” and “Lval” where, “Hval” is the upper value of water level (distance from ultrasonic sensor) and “Lval” is the Lower value of water level (distance from ultrasonic sensor). After all pin of buzzer is declared by integer “BUZZER” where, 10 is the D10 PIN of Arduino.

In the void setup RF Receiver is enabled by function “mySwitch.enableReceiver(0)”, where 0 is the interrupt pin (INT0) which is D2 pin of Arduino.

In the line 16, LCD begins by function “lcd.begin(16, 2)”, and in line 17, “lcd.print” is used for showing “WATER LEVEL INDI” in the first row of LCD.

In the line 19, “pinMode(BUZZER, OUTPUT)” declares the BUZZER pin as OUTPUT.

In the “void loop()” in the begening “if (mySwitch.available())” is used, that means if any data is received from RF Receiver, the program come in the loop. In the line 25, data coming from RF Receiver is decoded by function “mySwitch.getRecivedValue” and saved in a float “level”.

In the line 27 and 28 the “level” is processed and converted into the percentage, by using some mathematical expression. In line 30, “If” condition is used for limitation of percentage.

In the line 32, 33, 34, 35 the level is print on the LCD and in the line 37 “mySwitch.reset.Available()” function is used for resetting the RF module.

In the end of the code, “If” condition is used for switching on the buzzer, if level become more then 99 percentage.

 

 

 

 

 

Author

10 Comments

  1. sir plz hlep. In my project counting start from 100% it reduce 90,80….
    i am using ur code..
    i want to start form 0.0% to 100%.
    how can i solve plz guide me…

  2. What modification shall I do to switch on/off the transmitter circuit from ground…???

  3. Frank Katona

    Does anyone offer for sale a completed project?

  4. Frank Katona

    Does anyone offer a completed transmitter and receiver with software loaded for sale?

  5. Thomas Joseph

    Dear Sir,

    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.

  6. Fernando Leite

    I could not find the library file “Ultrasonic.h” for download. Has anyone been able to download?

  7. Cool project, sadly the 9 volt is empty really fast

  8. Receiver program level percentage formula not in work 0-100% plz suggest me

  9. I was very excited to see this wireless monitor and decided to make for my overhead tank. Spent couple of bucks and got all components. All went smooth transmitter codes giving following error .

    Worth mentioning I am just beginner and a hobbyist hence followed every thing verbatim.

    Arduino: 1.8.5 (Windows 7), Board: “Arduino Nano, ATmega328P”

    C:\Program Files (x86)\Arduino\arduino-builder -dump-prefs -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\Arshad\Documents\Arduino\libraries -fqbn=arduino:avr:nano:cpu=atmega328 -ide-version=10805 -build-path C:\Users\Arshad\AppData\Local\Temp\arduino_build_192362 -warnings=default -build-cache C:\Users\Arshad\AppData\Local\Temp\arduino_cache_525437 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avr-gcc.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avrdude.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -verbose C:\Users\Arshad\AppData\Local\Temp\arduino_modified_sketch_23154\Transmitter.ino
    C:\Program Files (x86)\Arduino\arduino-builder -compile -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\Arshad\Documents\Arduino\libraries -fqbn=arduino:avr:nano:cpu=atmega328 -ide-version=10805 -build-path C:\Users\Arshad\AppData\Local\Temp\arduino_build_192362 -warnings=default -build-cache C:\Users\Arshad\AppData\Local\Temp\arduino_cache_525437 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avr-gcc.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avrdude.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -verbose C:\Users\Arshad\AppData\Local\Temp\arduino_modified_sketch_23154\Transmitter.ino
    Using board ‘nano’ from platform in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr
    Using core ‘arduino’ from platform in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr
    Detecting libraries used…
    “C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++” -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10805 -DARDUINO_AVR_NANO -DARDUINO_ARCH_AVR “-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino” “-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\eightanaloginputs” “C:\Users\Arshad\AppData\Local\Temp\arduino_build_192362\sketch\Transmitter.ino.cpp” -o “nul”
    “C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++” -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10805 -DARDUINO_AVR_NANO -DARDUINO_ARCH_AVR “-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino” “-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\eightanaloginputs” “-IC:\Users\Arshad\Documents\Arduino\libraries\rc-switch-2.6.2” “C:\Users\Arshad\AppData\Local\Temp\arduino_build_192362\sketch\Transmitter.ino.cpp” -o “nul”
    “C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++” -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10805 -DARDUINO_AVR_NANO -DARDUINO_ARCH_AVR “-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino” “-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\eightanaloginputs” “-IC:\Users\Arshad\Documents\Arduino\libraries\rc-switch-2.6.2” “C:\Users\Arshad\AppData\Local\Temp\arduino_build_192362\sketch\Transmitter.ino.cpp” -o “C:\Users\Arshad\AppData\Local\Temp\arduino_build_192362\preproc\ctags_target_for_gcc_minus_e.cpp”
    C:\Users\Arshad\AppData\Local\Temp\arduino_modified_sketch_23154\Transmitter.ino:2:24: fatal error: Ultrasonic.h: No such file or directory

    #include

    ^

    compilation terminated.

    Using library rc-switch-2.6.2 at version 2.6.2 in folder: C:\Users\Arshad\Documents\Arduino\libraries\rc-switch-2.6.2
    exit status 1
    Error compiling for board Arduino Nano.

  10. V. Hari Hara Prasad

    Very good idea to measure the distance between water level and sensor. The transmitter and receiver circuits make sense of avoiding unnecessary wiring. We can also keep more sensors to measure the water pressure and tank filling log to tell the user approximate time to fill the tank. Same may be used to measure the fuel storage in a vehicle and approximate distance to travel for next filling: the average kmph calculation of the vehicle. A clock can also be added to show date, time and calendar.