• Skip to main content
  • Skip to primary sidebar

Homemade Circuit Projects

Need circuit help? Post them in the comments! I've answered over 50,000!

Blog | Categories | About | Contact | Calculators-online
You are here: Home / Water Controller / Ultrasonic Wireless Water Level Indicator – Solar Powered

Ultrasonic Wireless Water Level Indicator – Solar Powered

Last Updated on July 18, 2021 by Swagatam 58 Comments

An ultrasonic water level controller is a device which can detect water levels in a tank without a physical contact and send the data to a distant LED indicator in a wireless GSM mode.

img 20180523 133013

In this post I will show how to construct a ultrasonic based solar powered wireless water level indicator using Arduino in which the Arduinos would be transmitting and receiving at 2.4 GHz wireless frequency. We will be detecting the water level in the tank using ultrasonics instead of traditional electrode method.

Overview

Water level indicator is a must have gadget, if you own a house or even living in a rented house. A water level indicator shows one important data for your house which is as important as your energy meter’s reading, that is, how much water is left? So that we can keep track of water consumption and we don’t need to climb upstairs to access the water tank to check how much water left and no more sudden halt of water from faucet.

We are living at 2018 (at the time of writing of this article) or later, we can communicate to anywhere in the world instantly, we launched an electric race car to space, we launched satellites and rovers to mars, we even able land human beings on moon, still no proper commercial product for detecting how much water left in our water tanks?

We can find water level indicators are made by 5th grade students for science fair at school. How such simple projects didn’t make into our everyday life? The answer is water tank level indicators are not simple projects that a 5th grader can make one for our home. There are many practical considerations before we design one.

• Nobody wants to drill a hole on water tank’s body for electrodes which might leak water later on.
• Nobody wants to run 230 / 120 VAC wire near water tank.
• Nobody wants to replace batteries every month.
• Nobody wants to run additional long wires hanging on a room for water level indication as it is not pre-planned while building the house.
• Nobody wants to use the water which is mixed with metal corrosion of the electrode.
• Nobody wants to remove the water level indicator setup while cleaning the tank (inside).

Some of the reasons mentioned above may look silly but, you will find less satisfactory with commercially available products with these cons. That’s why penetration of these products are very less among the average households*.
*On Indian market.

After considering these key points, we have designed a practical water level indicator which should remove the cons mentioned.

Our design:

• It uses ultrasonic sensor to measure the water level so no corrosion problem.
• Wireless indication of water level real time at 2.4 GHz.
• Good wireless signal strength, enough for 2 story high buildings.
• Solar powered no more AC mains or replacing battery.
• Tank full / overflow alarm while filling the tank.

Let’s investigate the circuit details:

Transmitter:

The wireless transmitter circuit which is placed on the tank will send water level data every 5 seconds 24/7. The transmitter consists of Arduino nano, ultrasonic sensor HC-SR04, nRF24L01 module which will connect the transmitter and receiver wirelessly at 2.4 GHz.

A Solar panel of 9 V to 12 V with current output of 300mA will power the transmitter circuit. A battery management circuit board will charge the Li-ion battery, so that we can monitor the water level even when there is no sunlight.

Let us explore how to place the ultrasonic sensor at water tank:

Please note that you have to use your creativity to mound the circuit and protect from rain and direct sunlight.

Cut a small hole above the tank’s lid for placing the Ultrasonic sensor and seal it with some kind of adhesive you can find.

placing ultrasonic sensor in a water tank

Now measure the full height of the tank from bottom to lid, write it down in meters. Now measure the height of water holding capacity of tank as shown in the above image and write in down in meters.
You need to enter these two values in the code.

Schematic diagram of Transmitter:

ultrasonic transmitter connections for the water level control

NOTE: nRF24L01 uses 3.3V as Vcc do not connect to 5V output of Arduino.

Power supply for transmitter:

ultrasonic water level controller power supply design

Make sure that your solar panel’s output power i.e. output (volt x current) is greater than 3 watts. The solar panel should be 9V to 12V.

12V and 300mA panel is recommended which you can find easily on market. Battery should be around 3.7V 1000 mAh.

5V 18650 Li-ion charging module:

The following image shows a standard 18650 charger circuit

img 20180523 132207

The input can be USB (not used) or external 5V from LM7805 IC. Make sure that you get the correct module as shown above, it should have TP4056 protection, which has low battery cut-off and short circuit protection.

The output of this should to be fed to XL6009’s input which will boost to higher voltage, using a small screw driver output of XL6009 should be adjusted to 9V for Arduino.

Illustration of XL6009 DC to DC boost converter:

img 20180523 132041

That concludes the transmitter’s hardware.

Code for Transmitter:

// ----------- Program Developed by R.GIRISH / Homemade-circuits .com ----------- //
#include <RF24.h>
#include<SPI.h>
RF24 radio(9, 10);
const byte address[6] = "00001";
const int trigger = 3;
const int echo = 2;
const char text_0[] = "STOP";
const char text_1[] = "FULL";
const char text_2[] = "3/4";
const char text_3[] = "HALF";
const char text_4[] = "LOW";
float full = 0;
float three_fourth = 0;
float half = 0;
float quarter = 0;
long Time;
float distanceCM = 0;
float distanceM = 0;
float resultCM = 0;
float resultM = 0;
float actual_distance = 0;
float compensation_distance = 0;
// ------- CHANGE THIS -------//
float water_hold_capacity = 1.0; // Enter in Meters.
float full_height = 1.3; // Enter in Meters.
// ---------- -------------- //
void setup()
{
Serial.begin(9600);
pinMode(trigger, OUTPUT);
pinMode(echo, INPUT);
digitalWrite(trigger, LOW);
radio.begin();
radio.openWritingPipe(address);
radio.setChannel(100);
radio.setDataRate(RF24_250KBPS);
radio.setPALevel(RF24_PA_MAX);
radio.stopListening();
full = water_hold_capacity;
three_fourth = water_hold_capacity * 0.75;
half = water_hold_capacity * 0.50;
quarter = water_hold_capacity * 0.25;
}
void loop()
{
delay(5000);
digitalWrite(trigger, HIGH);
delayMicroseconds(10);
digitalWrite(trigger, LOW);
Time = pulseIn(echo, HIGH);
distanceCM = Time * 0.034;
resultCM = distanceCM / 2;
resultM = resultCM / 100;
Serial.print("Normal Distance: ");
Serial.print(resultM);
Serial.println(" M");
compensation_distance = full_height - water_hold_capacity;
actual_distance = resultM - compensation_distance;
actual_distance = water_hold_capacity - actual_distance;
if (actual_distance < 0)
{
Serial.print("Water Level:");
Serial.println(" 0.00 M (UP)");
}
else
{
Serial.print("Water Level: ");
Serial.print(actual_distance);
Serial.println(" M (UP)");
}
Serial.println("============================");
if (actual_distance >= full)
{
radio.write(&text_0, sizeof(text_0));
}
if (actual_distance > three_fourth && actual_distance <= full)
{
radio.write(&text_1, sizeof(text_1));
}
if (actual_distance > half && actual_distance <= three_fourth)
{
radio.write(&text_2, sizeof(text_2));
}
if (actual_distance > quarter && actual_distance <= half)
{
radio.write(&text_3, sizeof(text_3));
}
if (actual_distance <= quarter)
{
radio.write(&text_4, sizeof(text_4));
}
}
// ----------- Program Developed by R.GIRISH / Homemade-circuits .com ----------- //

Change the following values in the code which you measured:

// ------- CHANGE THIS -------//
float water_hold_capacity = 1.0; // Enter in Meters.
float full_height = 1.3; // Enter in Meters.
// ---------- -------------- //

That concludes the transmitter.

The Receiver:

ultrasonic water level receiver controller schematic

The receiver can show 5 levels. Alarm, when the tank reached absolute maximum water holding capacity while filling tank. 100 to 75 % - All four LEDs will glow, 75 to 50 % three LEDs will glow, 50 to 25 % two LEDs will glow, 25% and less one LED will glow.
The receiver can be powered from 9V battery or from smartphone charger to USB mini-B cable.

Code for Receiver:

// ----------- Program Developed by R.GIRISH / Homemade-circuits .com ----------- //
#include <RF24.h>
#include<SPI.h>
RF24 radio(9, 10);
int i = 0;
const byte address[6] = "00001";
const int buzzer = 6;
const int LED_full = 5;
const int LED_three_fourth = 4;
const int LED_half = 3;
const int LED_quarter = 2;
char text[32] = "";
void setup()
{
pinMode(buzzer, OUTPUT);
pinMode(LED_full, OUTPUT);
pinMode(LED_three_fourth, OUTPUT);
pinMode(LED_half, OUTPUT);
pinMode(LED_quarter, OUTPUT);
digitalWrite(buzzer, HIGH);
delay(300);
digitalWrite(buzzer, LOW);
digitalWrite(LED_full, HIGH);
delay(300);
digitalWrite(LED_three_fourth, HIGH);
delay(300);
digitalWrite(LED_half, HIGH);
delay(300);
digitalWrite(LED_quarter, HIGH);
delay(300);
digitalWrite(LED_full, LOW);
delay(300);
digitalWrite(LED_three_fourth, LOW);
delay(300);
digitalWrite(LED_half, LOW);
delay(300);
digitalWrite(LED_quarter, LOW);
Serial.begin(9600);
radio.begin();
radio.openReadingPipe(0, address);
radio.setChannel(100);
radio.setDataRate(RF24_250KBPS);
radio.setPALevel(RF24_PA_MAX);
radio.startListening();
}
void loop()
{
if (radio.available())
{
radio.read(&text, sizeof(text));
Serial.println(text);
if (text[0] == 'S' && text[1] == 'T' && text[2] == 'O' && text[3] == 'P')
{
digitalWrite(LED_full, HIGH);
digitalWrite(LED_three_fourth, HIGH);
digitalWrite(LED_half, HIGH);
digitalWrite(LED_quarter, HIGH);
for (i = 0; i < 50; i++)
{
digitalWrite(buzzer, HIGH);
delay(50);
digitalWrite(buzzer, LOW);
delay(50);
}
}
if (text[0] == 'F' && text[1] == 'U' && text[2] == 'L' && text[3] == 'L')
{
digitalWrite(LED_full, HIGH);
digitalWrite(LED_three_fourth, HIGH);
digitalWrite(LED_half, HIGH);
digitalWrite(LED_quarter, HIGH);
}
if (text[0] == '3' && text[1] == '/' && text[2] == '4')
{
digitalWrite(LED_full, LOW);
digitalWrite(LED_three_fourth, HIGH);
digitalWrite(LED_half, HIGH);
digitalWrite(LED_quarter, HIGH);
}
if (text[0] == 'H' && text [1] == 'A' && text[2] == 'L' && text[3] == 'F')
{
digitalWrite(LED_full, LOW);
digitalWrite(LED_three_fourth, LOW);
digitalWrite(LED_half, HIGH);
digitalWrite(LED_quarter, HIGH);
}
if (text[0] == 'L' && text[1] == 'O' && text[2] == 'W')
{
digitalWrite(LED_full, LOW);
digitalWrite(LED_three_fourth, LOW);
digitalWrite(LED_half, LOW);
digitalWrite(LED_quarter, HIGH);
}
}
}
// ----------- Program Developed by R.GIRISH / Homemade-circuits .com ----------- //

That concludes the receiver.

NOTE: if no LEDs are glowing, which means the receiver can’t get signal from transmitter. You should wait 5 seconds to receive the signal from transmitter after turning on the receiver circuit.

Author’s prototypes:

Transmitter:

ultrasonic transmitter prototype

Receiver:

ultrasonic receiver prototype

If you have any questions regarding this solar powered ultrasonic wireless water level controller circuit, please feel free to express in the comment, you can expect to get a quick reply.

You'll also like:

  • 1.  Water Flow Valve Timer Controller Circuit
  • 2.  Submersible Pump Start/Stop Circuit
  • 3.  Light Activated Water Level Controller Circuit
  • 4.  Remote Controlled Wireless Water Level Controller Circuit
  • 5.  Analogue Water Flow Sensor/Meter Circuit – Check Water Flow Rate
  • 6.  Two Pipe Water Pump Valve Controller Circuit

About Swagatam

I am an electronics engineer with over 15 years of hands-on experience. I am passionate about inventing, designing electronic circuits and PCBs, and helping hobbyists bring their projects to life. That is why I founded homemade-circuits.com, a website where I share innovative circuit ideas and tutorials. Have a circuit related question? Leave a comment.... I guarantee a reply!

Previous Post: « How to Build a Boost Converter Circuit: Explained with Calculations
Next Post: How to Design a Flyback Converter – Comprehensive Tutorial »

Reader Interactions

Comments

  1. mohamed ariff says

    July 18, 2024 at 7:24 pm

    Sir i can connect led light instead of oled display, tell me how connect 4 pin oled display nano board with wiring diagram and code for oled.

    Reply
  2. Hamid says

    September 27, 2023 at 7:43 am

    Hi Sir
    Thank you for your trainings , they are useful for me that want to start this intersting routh .
    can you tell me for how much distanse for wireless and deep of level can it used?
    Thank you
    from Iran

    Reply
    • Swagatam says

      September 27, 2023 at 9:31 am

      Thank you so much Hamid,
      I appreciate your question.
      However, I am sorry, I am unable to help you because my Arduino knowledge is not good and I do not have sufficient information about the subject to solve your query.
      The above article was submitted by another author.
      I hope some other reader here might be able to solve this problem for you.

      Reply
      • Hamid Dashtestani says

        October 5, 2023 at 2:29 am

        however thank you

        Reply
  3. Mbm says

    May 28, 2023 at 4:14 pm

    Can we use the digital display on place of light indicators

    Reply
    • Swagatam says

      May 28, 2023 at 6:23 pm

      That will require some major modifications in the code.

      Reply
  4. Damitha says

    August 31, 2022 at 7:06 pm

    Sir, much more thanks for sharing your knowledge with us. This is beautiful!
    I have a question though, is it possible to operate the transmitter circuit with the regular 5v usb supply, if one chooses to use a usb charger to power it?

    Thank you sir.

    Reply
    • Swagatam says

      August 31, 2022 at 7:49 pm

      Thank you Damitha,
      Yes the transmitter circuit can be operated using 5 V DC from USB also.

      Reply
  5. sreenivasa says

    April 11, 2022 at 5:21 pm

    sir i need to buy one item hope this is ready to use, where can i buy

    Reply
    • Swagatam says

      April 11, 2022 at 8:39 pm

      Sorry Sreenivasa, we don’t sell kits from this site at this moment.

      Reply
  6. Rajeev says

    July 18, 2021 at 5:04 pm

    Sir,
    How can I control the motor using relay. Could you please provide me the circuit to do it.

    Reply
    • Swagatam says

      July 18, 2021 at 5:47 pm

      Hello Rajeev, you can do it the following way:

      comment image" alt="ultrasonic water level with relay conbtrol" />

      Reply
  7. Rajeev says

    July 11, 2021 at 12:31 pm

    Sir , I have uploaded the transmitter code using old bootloader ,and the receiver code using the new .the module isn’t working the LED’s aren’t blinking too.could you please help me solve this problem.

    Reply
    • Swagatam says

      July 11, 2021 at 12:58 pm

      Rajeev, I am sorry I can’t help you with project since this was written by an external author, and my knowledge about Arduino is not good. The author has tested the design before submitting, so it should be a working design. You can try an Arduinio IDE software for uploading the codes, I am not sure about bootloader software.

      Reply
  8. Akram says

    June 26, 2021 at 11:16 pm

    D’not work this is sketch. Help mi!!!

    Reply
    • Swagatam says

      June 27, 2021 at 9:16 am

      This design has been tested by the author, and the codes are also compiling correctly.

      Reply
  9. Anand Mallik says

    February 20, 2021 at 3:37 pm

    Can this circuit be used to control the motor as soon as the tank gets full.
    If yes then how to connect. If not then kindly suggest me a circuit for the same.

    Regards,
    A. Malik

    Reply
    • Swagatam says

      February 20, 2021 at 5:01 pm

      Yes it is possible! Disconnect the “FULL” green LED negative pin from the ground, and connect it to the base of a relay driver stage:

      " rel="ugc">comment image

      Reply
  10. Sunilkumar Biradar says

    February 6, 2021 at 1:16 pm

    Are these commercially available.pls share contact details. Thanks in advance

    Reply
    • Swagatam says

      February 6, 2021 at 9:03 pm

      yes available through amazon, ebay etc

      Reply
  11. Kuldip Verma says

    January 16, 2021 at 1:33 pm

    Where I can purchase

    Reply
  12. Suresh says

    December 26, 2020 at 8:18 pm

    Can we add two or more receiver to the 1 transmitter

    Reply
    • Swagatam says

      December 26, 2020 at 8:34 pm

      yes it may be possible

      Reply
  13. Shivaprasad says

    October 14, 2020 at 1:39 pm

    The ultrasonic sensor, HC-SR04, will be continuously exposed to the very humid atmosphere in the tank. Will the sensor be able to survive this humid environment for more than a few months?

    Reply
  14. Marcel says

    August 16, 2020 at 12:16 am

    Will this also work with tubes smaller than 1 meter?
    I am testing with a Dopper bottle and set the size as follows:
    float water_hold_capacity = 0.14; // up to 14 centimeter can be with water
    float full_height = 0.19; // the maximum size of the Dopper bottle
    The Transmitter is registering the correct measurements in the serial monitor.
    The problem I have is, that the LED / LED’s never turn on (except on startup of the Arduino).
    The buzzer is working because I have added a testing code in the void setup() to check it for 5 seconds.

    How should I change the code of the receiver for this bottle?

    Reply
    • Swagatam says

      August 16, 2020 at 9:55 am

      Sorry, I have no idea regarding code modification.

      Reply
  15. Marcel says

    August 15, 2020 at 11:15 pm

    Should the LED/LED’s always be on, or will it/they only be on when filling the tank/bottle?
    When I use the serial monitor for the receiver, I get the question marks again.

    Reply
    • Swagatam says

      August 16, 2020 at 9:54 am

      You can keep it always ON so that you can continuously get the information about the level of the liquid. I am not Arduino expert so I can’t troubleshot the issue!

      Reply
  16. Marcel says

    August 13, 2020 at 10:45 pm

    I followed the circuit design and uploaded the codes. However, when I open the serial monitor, I only get question marks: ? ????????
    In the monitor I set the baud rate to 9600 which is the same as in the code. What am I doing wrong?

    Reply
    • Swagatam says

      August 14, 2020 at 9:00 am

      I checked the code in my Arduino ID and it is compiling perfectly:

      Done Compiling!
      Sketch uses 5998 bytes (18%) of program storage space. Maximum is 32256 bytes.
      Global variables use 369 bytes (18%) of dynamic memory, leaving 1679 bytes for local variables. Maximum is 2048 bytes.

      Reply
    • Marcel says

      August 14, 2020 at 8:51 pm

      Solved: I build the circuit without the buzzer and the LEDS. Now, I get normal output in the serial monitor.

      Reply
      • Swagatam says

        August 15, 2020 at 8:42 am

        Glad it is solved!

        Reply
  17. Mohammad Mohiuddin says

    May 27, 2020 at 11:02 am

    Could you please add a LCD display in receiver end in this project where showing the date, time, motor status and water level (as percentage e.g. 5%, 10% ……. 100%).

    Reply
    • Swagatam says

      May 27, 2020 at 2:05 pm

      Sorry, My arduino coding is not good, so I won’t be able to help you in this regard, however there are some information in the following links, which you can refer and try the procedures by yourself:
      https://www.homemade-circuits.com/introduction-i2c-lcd-adapter-module/

      https://www.homemade-circuits.com/learning-basic-arduino-programming-tutorial-for-the-newcomers/

      Reply
  18. Anupam Das Gupta says

    May 26, 2020 at 2:05 am

    Hi Swagatam,
    I am Anupam Dasgupta from Dhubri, Assam. The project is very nice and in my mind I was actually looking for such a project for my overhead water tank. Though everything is fine in the code, I could not follow one thing. The messages that will be send from the transmitter section are :
    text_0[] = “STOP”;
    text_1[] = “FULL”;
    text_2[] = “3/4”;
    text_3[] = “HALF”;
    text_4[] = “LOW”;
    But, in the receiver section, the messages that will be received shows;
    if (text[0] == ‘S’ && text[1] == ‘T’ && text[2] == ‘O’ && text[3] == ‘P’) etc.etc.
    would you kindly explain it.
    With regards.

    Reply
    • Swagatam says

      May 26, 2020 at 9:26 am

      Hi Anupam, I am sorry I won’t be able to provide any suggestions, because my Arduino coding knowledge is not good at this moment.

      Reply
      • Mark says

        October 12, 2020 at 2:34 pm

        sir what is the design if it’s just battery as power source instead of solar power? Because i want to design a portable device that could measure the volume of liquid inside the tank using ultrasonic sensor. Hope you could help me, thank you!

        Reply
        • Swagatam says

          October 12, 2020 at 5:33 pm

          Mark, As indicated in the 2nd diagram, you can use a 9V battery instead of a solar panel….

          Reply
          • Mark says

            October 12, 2020 at 5:58 pm

            Is the 9V battery connected to a transmitter and another battery to the receiver sir? And what should be the design if i don’t use LEDs? Just like an ultrasonic sensor that indicates a volume sensor. Hoping for your response sir thanks!

            Reply
            • Swagatam says

              October 13, 2020 at 12:36 pm

              Yes, since the units are to be operated remotely, the power sources will need to be separate.

              Reply
    • Brian says

      July 22, 2021 at 2:44 am

      text[0] in the receiver is the first character in the string text[].
      The receiver must parse the incoming (received) string to determine which of the 5 possible strings has been received. The incoming string is read at the top of the loop, then evaluated by successive if() statements to find a match.

      The succession of if() tests should be if() {…} else if {…} else if {…}, since no message can match more than one case. Further, only the first character of a message needs to be evaluated because every message is unique. Something like this: if (text[0] == ‘S’) { … } else if …

      Reply
  19. Ramana says

    March 5, 2020 at 1:06 pm

    Hi Swagatam,
    This is Ramana, from Hosur, Tamilnadu. I am very much impressed on your Ultrasonic Water level controller. But my doubt is whether 2nos. of Audrino is required(one each for Transmitter and Receiver or one is enough). Also if you can clarify the total Parts list for this project it would be very helpful. Please share your response.
    Thanks in advance, please keep innovating with new projects.
    Regards,
    Ramana

    Reply
    • Swagatam says

      March 5, 2020 at 1:31 pm

      Thanks Ramana, I am glad you liked the concept.
      Yes you will require two separate Arduino boards as shown in the transmitter/receiver set ups. The parts will be exactly as given in the two diagrams.

      Reply
  20. Anand Mallik says

    July 5, 2019 at 4:51 pm

    Sir I like this project but one thing I want to know that can motor be connected for automatic filling of overhead tank.
    Waiting for your kind reply.
    Regards,
    Mallik

    Reply
    • Swagatam says

      July 5, 2019 at 7:45 pm

      Hi Anand, yes it is possible by configuring a set-reset relay circuit with the upper GREEN LED, and the lower RED LED.

      Reply
      • Mark says

        October 12, 2020 at 1:02 pm

        Sir good day. Can you help me design a cricuit that uses ultrasonic sensor to measure a liquid volume in a tank without the use of arduino? It must be dc powered also sir. Thank you

        Reply
        • Swagatam says

          October 12, 2020 at 5:32 pm

          Hi Mark, sorry presently we do not have a non-Arduino version of the above concept…

          Reply
  21. tala says

    July 2, 2019 at 6:51 pm

    hi guys i need 2v input solar panel charger, is there any recommendation

    Reply
    • Swagatam says

      July 2, 2019 at 7:12 pm

      you can try this:

      https://www.homemade-circuits.com/solar-wind-2-input-hybrid-battery/

      Reply
    • Younus says

      January 30, 2020 at 5:12 am

      Hello Mr Girish.

      I am Younus from Australia.

      I would propose to ask you to design and make a Prototype for our Project.

      Its a portable oil Level Detection hand held unit capable to measure level remotely from a small opening say 2 inch steel pipe till a depth of say 80-100 meters with measuring accuracy of 0.1% Maximum.

      Preferably using Ultrasonic waves but not necessary if have a robust and cheaper version.

      We can discuss in detail If you can Possibly spare some time please.

      Thanks and Regards
      Younus.

      Reply
  22. gurucharan gupta says

    June 12, 2019 at 9:00 am

    thanks for making user friendly circuits. can we buy circuit or pcb made by you because we don’t have knowledge of electronics

    Reply
    • Swagatam says

      June 12, 2019 at 11:54 am

      I appreciate your interest very much, however no longer manufacture PCBs or circuit modules, so can’t help in this regard.

      Reply
  23. Ashok says

    January 10, 2019 at 3:43 pm

    what is max distance between sender and receiver?

    Reply
    • Swagatam says

      January 10, 2019 at 4:30 pm

      Not sure about the exact distance, but since it works using radio frequency on ISM bands, the distance can be significantly long:

      https://en.wikipedia.org/wiki/ISM_band

      Reply
  24. Manjujain says

    September 10, 2018 at 3:16 pm

    Sir what would be the cost over all approximately to this project

    Reply
    • Swagatam says

      September 10, 2018 at 5:34 pm

      Could be below Rs.1000/-, you can confirm it by searching in online stores.

      Reply
    • Venkat says

      April 7, 2022 at 9:00 am

      Pls provide the Arduino nano link, in market so many models available with different clock speeds,,, and tell me how to run with DC power directly ( without solar panel)

      Reply
  25. Sheikh Yousufh says

    July 29, 2018 at 8:15 pm

    Ultrasonic Wireless Water Level Indicator and controller using solenoid with arduino i have 2 over head tank please give me circuit diagram with code mail id [email protected]

    Reply

Need Help? Please Leave a Comment! We value your input—Kindly keep it relevant to the above topic! Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

Subscribe to New Circuit Ideas

Categories

  • Arduino Projects (87)
  • Audio and Amplifier Projects (132)
  • Automation Projects (17)
  • Automobile Electronics (101)
  • Battery Charger Circuits (82)
  • Datasheets and Components (102)
  • Electronics Theory (143)
  • Free Energy (37)
  • Games and Sports Projects (11)
  • Grid and 3-Phase (19)
  • Health related Projects (25)
  • Home Electrical Circuits (12)
  • Indicator Circuits (14)
  • Inverter Circuits (87)
  • Lamps and Lights (142)
  • Meters and Testers (69)
  • Mini Projects (46)
  • Motor Controller (64)
  • Oscillator Circuits (27)
  • Pets and Pests (15)
  • Power Supply Circuits (108)
  • Remote Control Circuits (50)
  • Security and Alarm (64)
  • Sensors and Detectors (100)
  • Solar Controller Circuits (59)
  • Temperature Controllers (42)
  • Timer and Delay Relay (49)
  • Transmitter Circuits (29)
  • Voltage Control and Protection (37)
  • Water Controller (36)

Calculators

  • Battery Back up Time Calculator
  • Capacitance Reactance Calculator
  • IC 555 Astable Calculator
  • IC 555 Monostable Calculator
  • Inductance Calculator
  • LC Resonance Calculator
  • LM317, LM338, LM396 Calculator
  • Ohm’s Law Calculator
  • Phase Angle Phase Shift Calculator
  • Power Factor (PF) Calculator
  • Reactance Calculator
  • Transistor Astable Calculator
  • Transistor base Resistor Calculator
  • Voltage Divider Calculator
  • Wire Current Calculator
  • Zener Diode Calculator
  • Filter Capacitor Calculator
  • Buck Converter Calculator
  • Boost Converter Calculator
  • Solar Panel, Inverter, Battery Calculator
  • Wire Current Calculator
  • SMPS Transformer Calculator
  • IC SG3525, SG3524 Calculator
  • Inverter LC Filter Calculator

People Also Search

555 Circuits | 741 Circuits | LM324 Circuits | LM338 Circuits | 4017 Circuits | Ultrasonic Projects | SMPS Projects | Christmas Projects | MOSFETs | Radio Circuits | Laser Circuits | PIR Projects |

Recent Comments

  • Swagatam on Simple Delay Timer Circuits Explained
  • Swagatam on The Role of Inductor Coil in SMPS
  • Swagatam on 7 Modified Sine Wave Inverter Circuits Explored – 100W to 3kVA
  • Swagatam on 7 Modified Sine Wave Inverter Circuits Explored – 100W to 3kVA
  • Victor on 7 Modified Sine Wave Inverter Circuits Explored – 100W to 3kVA

Company

  • Privacy Policy
  • Cookie Policy
  • About Me
  • Contact
  • Disclaimer
  • Copyright
  • Videos
  • Sitemap

Social Profiles

  • Twitter
  • YouTube
  • Instagram
  • Pinterest
  • My Facebook-Page
  • Quora
  • Stack Exchange
  • Linkedin
  • © 2025 · Swagatam Innovations