create account

DETAILED EXPLANATION ON HOW TO MAKE A LIQUID LEVEL SENSOR, INDICATOR AND AUDIO NOTIFIER USING ARDUINO NANO, ULTRASONIC SENSOR AND BUZZER by techlhab

View this thread on: hive.blogpeakd.comecency.com
· @techlhab · (edited)
$102.72
DETAILED EXPLANATION ON HOW TO MAKE A LIQUID LEVEL SENSOR, INDICATOR AND AUDIO NOTIFIER USING ARDUINO NANO, ULTRASONIC SENSOR AND BUZZER
![WATER_LEVEL_INDICATOR_ULTRASONIC_ARDUINO_bb.png](https://files.peakd.com/file/peakd-hive/techlhab/23w3AZdRjskNgFjnznn7wrj63U3yzQ8bcYHd6NoazDuSNPSnRUpekucigKeBCghTddVNM.png)

The need for adequate water or liquid levels monitoring system is very essential in other to prevent waste of water or liquid and also for certain decision making. During the period where water is to be effectively managed, the device would help in monitoring and notification of the level of water or amount of water present or left in the water tank or reservoir or bottles, and with that effective precautions or decisions can be taken. It is also highly utilized in food and drinks manufacturing industries to measure the level of liquid in bottles.

---
**<center>HARDWARE COMPONENTS</center>**

---
The following components are used in developing the hardware part of the device:

- Arduino Nano
- Ultrasonic Sensor
- Buzzer
- Resistor
- LED (Light Emitting Diode)
- Control Switch
- 5v Power Jack
- Connecting Wires



---
**<center>Arduino Nano</center>**

---
![arduino nano.png](https://files.peakd.com/file/peakd-hive/techlhab/EpnCie1mems3oBqFsFrc9pXRWwdveuspRAkhpszMj6cJ8eBWwCRuEdwYVwNAmoFgXyP.png)

Arduino Nano is a microcontroller which works almost exactly as the Arduino Uno or Arduino Mega but has lesser memory and appears to be very much smaller in size compared to Arduino Uno and Arduino Mega. 

It is used in this project as the brain where all other components attached to it receives and send instruction from and to it respectively. And it is where the codes written to control the device is been uploaded to.

---
**<center>Ultrasonic Sensor</center>**

---
![ultras.png](https://files.peakd.com/file/peakd-hive/techlhab/243zu1tDjQNzmHWGGeXSdneY1P4w1PLGda9UPf2vtY9mTc7qK1R2eDTc6gpuwozW1citA.png)

The ultrasonic sensor is a tranducers, that is it converts from one energy form to another, an ideal ultrasonic sensor converts ultrasonic sound waves into electrical signals. 

It radiates sound waves and measures the distance at which the transmitted ultrasonic sound wave is be reflected then converts the reflected sound waves into electrical signal.

It is used where the need for measuring distances or proximity of objects or substances is required. 

In this device it helps in measuring the different levels of liquid or water in the reservior, tank or bottle then sends the measured distance to the arduino nano microcontroller.


---
**<center>Buzzer</center>**

---
<center>
![buz.png](https://files.peakd.com/file/peakd-hive/techlhab/243WgrvKmhNw4kfaN2ipDMSQBhHiY6ehdvep9PVNjK5j1NdYv4QsYfrP27tYZw6ERfxNP.png)</center>

The Buzzer is an electronic component that converts electrical signal into sound signal. It is highly utilized in alarms, printers, and other electronic devices where the need for beep sounds is required or needed.

The buzzer help in giving beep sounds outputs as the water gets to different levels in the tank, bottle or reservior.

---
**<center>The Indicating LED (Light Emitting Diode)</center>**

---
<center>
![led.png](https://files.peakd.com/file/peakd-hive/techlhab/23uFwiZFWzsPgprm75W8z9KugfkUqqswKFFivaiqEtNG4Vf6CaoTMNbj71G5iMKzxJBHd.png)</center>

The LED (Light Emitting Diode) is a polarized two terminal electronic component that converts electrical energy into light energy, that is, it emitts light when an electrical energy is been applied to it terminals or when been biased.

The LED bulb helps in indicating the different levels the liquid or water is in the bottle, tank or reservoirs.

---
**<center>The Resistor</center>**

---
<center>
![resis.png](https://files.peakd.com/file/peakd-hive/techlhab/23uRL1dCkxQxVojEczY4muVogwDTmW2NxNdK93BVnRKGpGiGcTXpDvHBfai24SgAyH9KW.png)</center>

As it is known, a resistor is an electronic component that helps to reduce or limit the flow of electric current in an electric circuit or the amount of electric current that would flow to a certain electronic component in an electric circuit.

The resistor helps in limiting or reducing the about of electric current that flows into the LED (light emitting diode) the LED only requires 3.3v to power on but since that output from the Arduino Nano is 5v, then their is a need to reduce this voltage so that is doesn't go straight to the LED and cause it to damage.

---
**<center>HARDWARE CONNECTIONS</center>**

---
**Connecting the Arduino Nano with the Ultrasonic Sensor**
|Arduino Nano|Ultrasonic Sensor
|-|-|
|Vcc|Vcc|
|GND|GND|
|D7|Echo|
|D8|Trig|

**Connecting the Arduino Nano with the Buzzer**

|Arduino Nano|Buzzer
|-|-|
|GND|GND|
|D6|+VE|

**Connecting the Arduino Nano with the LEDs**

|LEDS|Arduino Nano
|-|-|
|LED1|D2|
|LED2|D3|
|LED3|D4|
|LED4|D5|
|GND|GND|


---

**<center>SOFTWARE COMPONENTS</center>**

---
The following components are used in developing the software part of the device:

- Arduino IDE (Integrated Development Environment)
- Embedded C/C++ Programming Language
- Frizting

---
**<center>CIRCUIT DIAGRAM</center>**

---

![WATER_LEVEL_INDICATOR_ULTRASONIC_ARDUINO_schem.png](https://files.peakd.com/file/peakd-hive/techlhab/23tHbkj8Axb8AGpU5fxkXHMTXkSjkjjUYnJ97tAmFBoCox6Ac8Gxk8DCuLAmUPJvpRXNh.png)


---
**<center>THE CODE</center>**

---
After successfully making the connections of the hardward components together following the instructions above, to program the devie the code below should be uploaded to the Arduino Nano microcontroller.

```
int trigger_pin = 8;
int echo_pin = 7;
int buzzer_pin = 6; 
int led1 = 2;
int led2 = 3;
int led3 = 4;
int led4 = 5;
int time;
int distance; 

void setup ( ) {
        Serial.begin (9600); 
        pinMode (trigger_pin, OUTPUT); 
        pinMode (echo_pin, INPUT);
        pinMode (buzzer_pin, OUTPUT);
        pinMode (led1, OUTPUT);
        pinMode (led2, OUTPUT);
        pinMode (led3, OUTPUT);
        pinMode (led4, OUTPUT);
}

void loop ( ) {
    digitalWrite (trigger_pin, HIGH);
    delayMicroseconds (10);
    digitalWrite (trigger_pin, LOW);
    time = pulseIn (echo_pin, HIGH);
    distance = (time * 0.034) / 2;   
    if ((distance >= 15) && (distance <= 17))
        {
        Serial.println ("25% WATER LEVEL REACHED");
        Serial.print (" Water Height = ");                     
        Serial.println (distance);        
        digitalWrite (led1, HIGH);
        digitalWrite (led2, LOW);
        digitalWrite (led3, LOW);
        digitalWrite (led4, LOW);
        digitalWrite (buzzer_pin, HIGH);
        delay(500);
        digitalWrite (buzzer_pin, LOW);
        delay(500);
        digitalWrite (buzzer_pin, HIGH);
        delay(500);
        digitalWrite (buzzer_pin, LOW);
        delay (500);
        digitalWrite (buzzer_pin, HIGH);
        delay(500);
        digitalWrite (buzzer_pin, LOW);
        delay (500);
        }

     else if ((distance >= 10) && (distance < 15))
        {
        Serial.println ("50% WATER LEVEL REACHED");
        Serial.print (" Water Height = ");                     
        Serial.println (distance);        
        digitalWrite (buzzer_pin, HIGH);
        digitalWrite (led2, HIGH);
        digitalWrite (led1, HIGH);
        digitalWrite (led3, LOW);
        digitalWrite (led4, LOW);
        digitalWrite (buzzer_pin, HIGH);
        delay(350);
        digitalWrite (buzzer_pin, LOW);
        delay(350);
        digitalWrite (buzzer_pin, HIGH);
        delay(350);
        digitalWrite (buzzer_pin, LOW);
        delay (350);
        digitalWrite (buzzer_pin, HIGH);
        delay(350);
        digitalWrite (buzzer_pin, LOW);
        delay (350);
        digitalWrite (buzzer_pin, HIGH);
        delay(350);
        digitalWrite (buzzer_pin, LOW);
        delay (350);
        }

       else if ((distance >= 5) && (distance < 10))
        {
        Serial.println ("75% WATER LEVEL REACHED");
        Serial.print (" Water Height = ");                      
        Serial.println (distance);        
        digitalWrite (buzzer_pin, HIGH);
        digitalWrite (led3, HIGH);
        digitalWrite (led2, HIGH);
        digitalWrite (led1, HIGH);
        digitalWrite (led4, LOW);
        digitalWrite (buzzer_pin, HIGH);
        delay(200);
        digitalWrite (buzzer_pin, LOW);
        delay(200);
        digitalWrite (buzzer_pin, HIGH);
        delay(200);
        digitalWrite (buzzer_pin, LOW);
        delay(200);
        digitalWrite (buzzer_pin, HIGH);
        delay(200);
        digitalWrite (buzzer_pin, LOW);
        delay(200);
        digitalWrite (buzzer_pin, HIGH);
        delay(200);
        digitalWrite (buzzer_pin, LOW);
        delay(200);
        digitalWrite (buzzer_pin, HIGH);
        delay(200);
        digitalWrite (buzzer_pin, LOW);
        delay(200);
        digitalWrite (buzzer_pin, HIGH);
        delay(200);
        digitalWrite (buzzer_pin, LOW);
        delay(200);
        }

        else if (distance < 5)
        {
        Serial.println ("10% WATER LEVEL REACHED");
        Serial.print (" Water Height = ");              
        Serial.println (distance);        
        digitalWrite (buzzer_pin, HIGH);
        digitalWrite (led4, HIGH);
        digitalWrite (led2, HIGH);
        digitalWrite (led3, HIGH);
        digitalWrite (led1, HIGH);
        digitalWrite (buzzer_pin, HIGH);
        delay(100);
        digitalWrite (buzzer_pin, LOW);
        delay(100);
        digitalWrite (buzzer_pin, HIGH);
        delay(100);
        digitalWrite (buzzer_pin, LOW);
        delay(100);
        digitalWrite (buzzer_pin, HIGH);
        delay(100);
        digitalWrite (buzzer_pin, LOW);
        delay(100);
        digitalWrite (buzzer_pin, HIGH);
        delay(100);
        digitalWrite (buzzer_pin, LOW);
        delay(100);
        digitalWrite (buzzer_pin, HIGH);
        delay(100);
        digitalWrite (buzzer_pin, LOW);
        delay(100);
        digitalWrite (buzzer_pin, HIGH);
        delay(100);
        digitalWrite (buzzer_pin, LOW);
        delay(100);
        }

    else {
        Serial.println ("WATER LEVEL IS CRITICALLY LOW");
        Serial.print (" Water Height = ");              
        Serial.println (distance);        
        digitalWrite (buzzer_pin, LOW);
        digitalWrite (led4, LOW);
        digitalWrite (led2, LOW);
        digitalWrite (led3, LOW);
        digitalWrite (led1, LOW);
        delay (500);        
    } }
  
```

Thanks for reading and visiting my blog 🤝. Kindly support this post by reblogging, upvoting, and commenting, it would be highly appreciated.

*<sub>Images used in this post were all designed by me using [frizting](https://fritzing.org), a circuit design and simulation software.</sub>*


Posted with [STEMGeeks](https://stemgeeks.net)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 279 others
👎  , ,
properties (23)
authortechlhab
permlinkdetailed-explanation-on-how-to-make-a-liquid-level-sensor-indicator-and-audio-notifier-using-arduino-nano-ultrasonic-sensor-and
categoryhive-163521
json_metadata{"tags":["technology","engineering","pob","stem","opensource","neoxian","vyb","ctp","diy","ocd"],"image":["https://files.peakd.com/file/peakd-hive/techlhab/23w3AZdRjskNgFjnznn7wrj63U3yzQ8bcYHd6NoazDuSNPSnRUpekucigKeBCghTddVNM.png","https://files.peakd.com/file/peakd-hive/techlhab/EpnCie1mems3oBqFsFrc9pXRWwdveuspRAkhpszMj6cJ8eBWwCRuEdwYVwNAmoFgXyP.png","https://files.peakd.com/file/peakd-hive/techlhab/243zu1tDjQNzmHWGGeXSdneY1P4w1PLGda9UPf2vtY9mTc7qK1R2eDTc6gpuwozW1citA.png","https://files.peakd.com/file/peakd-hive/techlhab/243WgrvKmhNw4kfaN2ipDMSQBhHiY6ehdvep9PVNjK5j1NdYv4QsYfrP27tYZw6ERfxNP.png","https://files.peakd.com/file/peakd-hive/techlhab/23uFwiZFWzsPgprm75W8z9KugfkUqqswKFFivaiqEtNG4Vf6CaoTMNbj71G5iMKzxJBHd.png","https://files.peakd.com/file/peakd-hive/techlhab/23uRL1dCkxQxVojEczY4muVogwDTmW2NxNdK93BVnRKGpGiGcTXpDvHBfai24SgAyH9KW.png","https://files.peakd.com/file/peakd-hive/techlhab/23tHbkj8Axb8AGpU5fxkXHMTXkSjkjjUYnJ97tAmFBoCox6Ac8Gxk8DCuLAmUPJvpRXNh.png"],"app":"stemgeeks/0.1","format":"markdown","canonical_url":"https://stemgeeks.net/@techlhab/detailed-explanation-on-how-to-make-a-liquid-level-sensor-indicator-and-audio-notifier-using-arduino-nano-ultrasonic-sensor-and","users":[]}
created2022-03-21 04:59:36
last_update2022-03-21 05:43:24
depth0
children15
last_payout2022-03-28 04:59:36
cashout_time1969-12-31 23:59:59
total_payout_value50.123 HBD
curator_payout_value52.592 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10,651
author_reputation11,066,014,147,515
root_title"DETAILED EXPLANATION ON HOW TO MAKE A LIQUID LEVEL SENSOR, INDICATOR AND AUDIO NOTIFIER USING ARDUINO NANO, ULTRASONIC SENSOR AND BUZZER"
beneficiaries
0.
accounthiveonboard
weight100
1.
accountocd
weight100
2.
accountstarstrings01
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,541,937
net_rshares84,529,188,371,756
author_curate_reward""
vote details (346)
@anyiglobal ·
Nice tutorial! Keep bringing quality contents to STEMGeeks
properties (22)
authoranyiglobal
permlinkre-techlhab-2022325t73037496z
categoryhive-163521
json_metadata{"tags":["hive-163521","technology","engineering","pob","stem","opensource","neoxian","vyb","ctp","diy","ocd"],"app":"ecency/3.0.27-mobile","format":"markdown+html"}
created2022-03-25 06:32:39
last_update2022-03-25 06:32:39
depth1
children0
last_payout2022-04-01 06:32:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation964,068,813,387
root_title"DETAILED EXPLANATION ON HOW TO MAKE A LIQUID LEVEL SENSOR, INDICATOR AND AUDIO NOTIFIER USING ARDUINO NANO, ULTRASONIC SENSOR AND BUZZER"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,669,879
net_rshares0
@chosenfingers ·
My boss...nice and detailed information on using sensors, Arduino for water level indication 

I enjoyed reading through especially the practical approach given

Kudos man. Much love😍
👍  , , , ,
properties (23)
authorchosenfingers
permlinkre-techlhab-r93fed
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.6"}
created2022-03-21 11:49:09
last_update2022-03-21 11:49:09
depth1
children1
last_payout2022-03-28 11:49:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length183
author_reputation39,435,640,077,516
root_title"DETAILED EXPLANATION ON HOW TO MAKE A LIQUID LEVEL SENSOR, INDICATOR AND AUDIO NOTIFIER USING ARDUINO NANO, ULTRASONIC SENSOR AND BUZZER"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,549,211
net_rshares7,433,315,193
author_curate_reward""
vote details (5)
@techlhab ·
Thanks @chosenfingers for the nice comment. I just love going in details 😊.
👍  , , ,
properties (23)
authortechlhab
permlinkre-chosenfingers-r93iqo
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.6"}
created2022-03-21 12:59:18
last_update2022-03-21 12:59:18
depth2
children0
last_payout2022-03-28 12:59:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length75
author_reputation11,066,014,147,515
root_title"DETAILED EXPLANATION ON HOW TO MAKE A LIQUID LEVEL SENSOR, INDICATOR AND AUDIO NOTIFIER USING ARDUINO NANO, ULTRASONIC SENSOR AND BUZZER"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,550,652
net_rshares1,905,933,994
author_curate_reward""
vote details (4)
@curation-cartel ·
![Don-1UP-Cheers-Cartel-250px.png](https://files.peakd.com/file/peakd-hive/curation-cartel/23wgDhXHXhDmLCUp4RXCi4QwSwg2eCBXYV3b8uBMLvQ7BDWDG4eFSyWTp58qTjfu5ULQD.png) |  <div class="phishy"><u><h4>You have received a __1UP__ from @kwskicky!</h4></u></div> The following @oneup-cartel family members will soon upvote your post:<br> __<code>@ctp-curator, @stem-curator, @vyb-curator, @pob-curator, @neoxag-curator</code>__  <br>_And they will bring !PIZZA 🍕_ 
-|-

<sup>[Learn more](https://peakd.com/hive-102223/@flauwy/the-curation-cartel-1up-trigger-smart-voting-mana-and-high-delegation-returns-for-14-different-tribes) about our delegation service to earn daily rewards. Join the family on [Discord](https://discord.gg/H5mxvTrexm).</sup>
properties (22)
authorcuration-cartel
permlinkre-detailed-explanation-on-how-to-make-a-liquid-level-sensor-indicator-and-audio-notifier-using-arduino-nano-ultrasonic-sensor-and-20220322t073447z
categoryhive-163521
json_metadata"{"app": "beem/0.24.26"}"
created2022-03-22 07:34:48
last_update2022-03-22 07:34:48
depth1
children0
last_payout2022-03-29 07:34:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length739
author_reputation1,123,882,653,763
root_title"DETAILED EXPLANATION ON HOW TO MAKE A LIQUID LEVEL SENSOR, INDICATOR AND AUDIO NOTIFIER USING ARDUINO NANO, ULTRASONIC SENSOR AND BUZZER"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,575,988
net_rshares0
@discovery-it ·
<div class="pull-left">https://cdn.steemitimages.com/DQmTAn3c753LR7bHCLPo96g9UvRMaPFwaMYn8VQZa85xczC/discovery_logo_colore%20-%20Copia.png</div><br> This post was shared and voted inside the discord by the curators team of <a href="https://discord.gg/cMMp943"> discovery-it</a> <br>Join our community! <a href = "https://hive.blog/trending/hive-193212"> hive-193212</a><br>Discovery-it is also a Witness, vote for us <a href = "https://hivesigner.com/sign/account-witness-vote?witness=discovery-it&approve=true"> here</a>  <br>Delegate to us for passive income. Check our <a href = "https://hive.blog/hive-193212/@discovery-it/delegations-program-80-fee-back"> 80% fee-back Program</a> <hr>
properties (22)
authordiscovery-it
permlinkre-techlhab-2804zp1hv7
categoryhive-163521
json_metadata"{"app": "beem/0.24.26"}"
created2022-03-21 13:35:51
last_update2022-03-21 13:35:51
depth1
children0
last_payout2022-03-28 13:35:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length690
author_reputation67,032,090,120,609
root_title"DETAILED EXPLANATION ON HOW TO MAKE A LIQUID LEVEL SENSOR, INDICATOR AND AUDIO NOTIFIER USING ARDUINO NANO, ULTRASONIC SENSOR AND BUZZER"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,551,524
net_rshares0
@ecency ·
Your content has been **voted** as a part of [Encouragement program](https://ecency.com/ecency/@good-karma/encouragement-program-continues-82eafcd10a299). Keep up the good work! <br><br>Use Ecency daily to boost your growth on platform! <br><br><b>Support Ecency</b><br>[Vote for new Proposal](https://hivesigner.com/sign/update-proposal-votes?proposal_ids=%5B197%5D&approve=true)<br>[Delegate HP and earn more](https://ecency.com/hive-125125/@ecency/daily-100-curation-rewards)
properties (22)
authorecency
permlinkre-2022321t13518248z
categoryhive-163521
json_metadata{"tags":["ecency"],"app":"ecency/3.0.20-welcome","format":"markdown+html"}
created2022-03-21 13:51:09
last_update2022-03-21 13:51:09
depth1
children0
last_payout2022-03-28 13:51:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length478
author_reputation613,589,286,978,643
root_title"DETAILED EXPLANATION ON HOW TO MAKE A LIQUID LEVEL SENSOR, INDICATOR AND AUDIO NOTIFIER USING ARDUINO NANO, ULTRASONIC SENSOR AND BUZZER"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,551,971
net_rshares0
@enforcer48 ·
Pretty incredible stuff there.

!discovery 47
properties (22)
authorenforcer48
permlinkre-techlhab-r93kf2
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.6"}
created2022-03-21 13:35:27
last_update2022-03-21 13:35:27
depth1
children1
last_payout2022-03-28 13:35:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation426,233,073,731,239
root_title"DETAILED EXPLANATION ON HOW TO MAKE A LIQUID LEVEL SENSOR, INDICATOR AND AUDIO NOTIFIER USING ARDUINO NANO, ULTRASONIC SENSOR AND BUZZER"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,551,515
net_rshares0
@techlhab ·
$0.11
Thanks for the nice comment @enforcer48 🤝.
👍  , , , ,
properties (23)
authortechlhab
permlinkre-enforcer48-r9507r
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.6"}
created2022-03-22 08:14:21
last_update2022-03-22 08:14:21
depth2
children0
last_payout2022-03-29 08:14:21
cashout_time1969-12-31 23:59:59
total_payout_value0.056 HBD
curator_payout_value0.055 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation11,066,014,147,515
root_title"DETAILED EXPLANATION ON HOW TO MAKE A LIQUID LEVEL SENSOR, INDICATOR AND AUDIO NOTIFIER USING ARDUINO NANO, ULTRASONIC SENSOR AND BUZZER"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,577,028
net_rshares84,161,253,716
author_curate_reward""
vote details (5)
@hivebuzz ·
Congratulations @techlhab! You have completed the following achievement on the Hive blockchain and have been rewarded with new badge(s):

<table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@techlhab/upvoted.png?202203211533"></td><td>You received more than 2750 upvotes.<br>Your next target is to reach 3000 upvotes.</td></tr>
</table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@techlhab) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Check out the last post from @hivebuzz:**
<table><tr><td><a href="/hive-122221/@hivebuzz/pum-202203-15"><img src="https://images.hive.blog/64x128/https://i.imgur.com/xwzanZE.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202203-15">Hive Power Up Month - Feedback from February day 15</a></td></tr></table>

###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22199%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/199)!
properties (22)
authorhivebuzz
permlinknotify-techlhab-20220321t154016
categoryhive-163521
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2022-03-21 15:40:18
last_update2022-03-21 15:40:18
depth1
children0
last_payout2022-03-28 15:40:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,138
author_reputation369,240,710,670,438
root_title"DETAILED EXPLANATION ON HOW TO MAKE A LIQUID LEVEL SENSOR, INDICATOR AND AUDIO NOTIFIER USING ARDUINO NANO, ULTRASONIC SENSOR AND BUZZER"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,555,030
net_rshares0
@kwskicky ·
Great instructions about how to make sensor like this. I see that you put in distance 0.034 it is because of sound speed in air? 

!1UP
👍  
properties (23)
authorkwskicky
permlinkr94xgr
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2022-03-22 07:14:51
last_update2022-03-22 07:14:51
depth1
children1
last_payout2022-03-29 07:14:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length135
author_reputation34,341,734,503,791
root_title"DETAILED EXPLANATION ON HOW TO MAKE A LIQUID LEVEL SENSOR, INDICATOR AND AUDIO NOTIFIER USING ARDUINO NANO, ULTRASONIC SENSOR AND BUZZER"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,575,691
net_rshares0
author_curate_reward""
vote details (1)
@techlhab ·
Thanks @kwskicky for the nice comments 🤝.

By default, the speed of sound is 340m/s (Meters per second).
Our time is in microseconds and to calculate distance, 
since Speed = Distance / Time
Therefore, Distance = Speed * Time
i.e, D = s * t

converting Microseconds to seconds = 1x10^6
Distance per second equals,

     D = 340 * 10^6
     D = 0.00034 m/s
     D = 0.034cm/s

The distance calculated above is the distance the sound wave takes to hit an object and also the distance it takes to return back.

To get distance it uses to return back or reflect back. we divide the distance by 2.
    d = D/2

Which is the exact distance at which the ultrasonic sensor senses the water level.

👍  ,
properties (23)
authortechlhab
permlinkre-kwskicky-r953eo
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.6"}
created2022-03-22 09:23:15
last_update2022-03-22 09:23:15
depth2
children0
last_payout2022-03-29 09:23:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length690
author_reputation11,066,014,147,515
root_title"DETAILED EXPLANATION ON HOW TO MAKE A LIQUID LEVEL SENSOR, INDICATOR AND AUDIO NOTIFIER USING ARDUINO NANO, ULTRASONIC SENSOR AND BUZZER"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,579,797
net_rshares2,853,339,193
author_curate_reward""
vote details (2)
@sayee ·
Voted on behalf of the Neoxian city paper. 
👍  , , ,
properties (23)
authorsayee
permlinkre-techlhab-l10h9fl9
categoryhive-163521
json_metadata{"tags":["neoxian"],"format":"markdown","canonical_url":"https://www.neoxian.city/@sayee/re-techlhab-l10h9fl9","app":"neoxian/1.0.0"}
created2022-03-21 09:00:27
last_update2022-03-21 09:00:27
depth1
children1
last_payout2022-03-28 09:00:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation400,022,799,124,779
root_title"DETAILED EXPLANATION ON HOW TO MAKE A LIQUID LEVEL SENSOR, INDICATOR AND AUDIO NOTIFIER USING ARDUINO NANO, ULTRASONIC SENSOR AND BUZZER"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,545,974
net_rshares1,908,373,250
author_curate_reward""
vote details (4)
@techlhab ·
Thanks for the upvote @sayee highly appreciate it 🤝.
👍  , , ,
properties (23)
authortechlhab
permlinkre-sayee-r93jgo
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.6"}
created2022-03-21 13:14:48
last_update2022-03-21 13:14:48
depth2
children0
last_payout2022-03-28 13:14:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation11,066,014,147,515
root_title"DETAILED EXPLANATION ON HOW TO MAKE A LIQUID LEVEL SENSOR, INDICATOR AND AUDIO NOTIFIER USING ARDUINO NANO, ULTRASONIC SENSOR AND BUZZER"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,550,994
net_rshares1,901,034,879
author_curate_reward""
vote details (4)
@writermaximus ·
A good read with a very detailed explanation!!

Well done boss🙌🏻🙌🏻
👍  , , , ,
properties (23)
authorwritermaximus
permlinkre-techlhab-r93fb4
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.6"}
created2022-03-21 11:45:06
last_update2022-03-21 11:45:06
depth1
children1
last_payout2022-03-28 11:45:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation23,034,965,544,007
root_title"DETAILED EXPLANATION ON HOW TO MAKE A LIQUID LEVEL SENSOR, INDICATOR AND AUDIO NOTIFIER USING ARDUINO NANO, ULTRASONIC SENSOR AND BUZZER"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,549,124
net_rshares5,968,922,885
author_curate_reward""
vote details (5)
@techlhab ·
Thanks for the comments @writermaximus 🤝.
👍  , , ,
properties (23)
authortechlhab
permlinkre-writermaximus-r93is1
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.03.6"}
created2022-03-21 13:00:12
last_update2022-03-21 13:00:12
depth2
children0
last_payout2022-03-28 13:00:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation11,066,014,147,515
root_title"DETAILED EXPLANATION ON HOW TO MAKE A LIQUID LEVEL SENSOR, INDICATOR AND AUDIO NOTIFIER USING ARDUINO NANO, ULTRASONIC SENSOR AND BUZZER"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id111,550,673
net_rshares1,903,482,772
author_curate_reward""
vote details (4)