 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 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>** ---  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> </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> </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> </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>** ---  --- **<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)
author | techlhab | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | detailed-explanation-on-how-to-make-a-liquid-level-sensor-indicator-and-audio-notifier-using-arduino-nano-ultrasonic-sensor-and | ||||||||||||||||||
category | hive-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":[]} | ||||||||||||||||||
created | 2022-03-21 04:59:36 | ||||||||||||||||||
last_update | 2022-03-21 05:43:24 | ||||||||||||||||||
depth | 0 | ||||||||||||||||||
children | 15 | ||||||||||||||||||
last_payout | 2022-03-28 04:59:36 | ||||||||||||||||||
cashout_time | 1969-12-31 23:59:59 | ||||||||||||||||||
total_payout_value | 50.123 HBD | ||||||||||||||||||
curator_payout_value | 52.592 HBD | ||||||||||||||||||
pending_payout_value | 0.000 HBD | ||||||||||||||||||
promoted | 0.000 HBD | ||||||||||||||||||
body_length | 10,651 | ||||||||||||||||||
author_reputation | 11,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_payout | 1,000,000.000 HBD | ||||||||||||||||||
percent_hbd | 10,000 | ||||||||||||||||||
post_id | 111,541,937 | ||||||||||||||||||
net_rshares | 84,529,188,371,756 | ||||||||||||||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drifter1 | 0 | 31,581,085,262 | 100% | ||
modeprator | 0 | 568,074,331 | 75% | ||
onealfa | 0 | 43,019,156,225 | 3.82% | ||
kevinwong | 0 | 70,241,436,368 | 12% | ||
leprechaun | 0 | 1,113,083,280 | 50% | ||
mammasitta | 0 | 4,082,130,817 | 1.2% | ||
good-karma | 0 | 5,161,535,757 | 0.5% | ||
roelandp | 0 | 222,192,892,152 | 3% | ||
neoxian | 0 | 5,389,703,750,250 | 30% | ||
dwinblood | 0 | 1,479,492,165 | 12.75% | ||
donatello | 0 | 4,615,374,464 | 4.7% | ||
fiveboringgames | 0 | 629,244,027 | 12% | ||
stea90 | 0 | 6,967,072,403 | 23.5% | ||
steempress | 0 | 126,866,716,186 | 12% | ||
velourex | 0 | 560,683,909 | 4.5% | ||
jschindler | 0 | 681,042,662,303 | 50% | ||
someguy123 | 0 | 519,516,091,976 | 22.8% | ||
richardcrill | 0 | 66,138,527,816 | 25.5% | ||
seckorama | 0 | 21,316,941,497 | 14.1% | ||
successforall | 0 | 4,654,678,518 | 3.82% | ||
rishi556 | 0 | 2,433,471,584 | 10% | ||
slider2990 | 0 | 10,252,173,712 | 75% | ||
keuudeip | 0 | 942,719,997 | 11.4% | ||
oleg326756 | 0 | 1,435,089,622 | 3% | ||
esteemapp | 0 | 1,133,889,891 | 0.5% | ||
yadamaniart | 0 | 4,949,478,241 | 6% | ||
walterjay | 0 | 40,069,749,530 | 3.6% | ||
erikaflynn | 0 | 17,721,818,744 | 30% | ||
camb | 0 | 1,568,830,887 | 25% | ||
trafalgar | 0 | 17,720,228,083,169 | 45% | ||
detlev | 0 | 13,241,784,435 | 1.2% | ||
raindrop | 0 | 297,554,757,729 | 45% | ||
l337m45732 | 0 | 2,801,765,685 | 6% | ||
ma1neevent | 0 | 3,733,260,331 | 15% | ||
batman0916 | 0 | 867,099,415 | 5.7% | ||
whatamidoing | 0 | 9,717,008,668 | 7.5% | ||
newsflash | 0 | 6,157,051,751,578 | 9.72% | ||
rawselectmusic | 0 | 2,415,850,262 | 6% | ||
guchtere | 0 | 1,188,271,576 | 5.7% | ||
joeyarnoldvn | 0 | 501,453,808 | 1.47% | ||
diegoameerali | 0 | 999,636,408 | 3.6% | ||
dante31 | 0 | 729,954,485 | 6% | ||
allcapsonezero | 0 | 1,000,579,300 | 2.25% | ||
howo | 0 | 362,244,939,689 | 12% | ||
ocd | 0 | 1,709,312,258,404 | 12% | ||
macchiata | 0 | 20,729,826,860 | 5.7% | ||
shrazi | 0 | 5,157,253,074 | 100% | ||
redrica | 0 | 4,354,545,028 | 6.27% | ||
hdmed | 0 | 1,459,386,991 | 12% | ||
spiceboyz | 0 | 16,598,210,780 | 47% | ||
valchiz | 0 | 2,105,077,107 | 15% | ||
nevies | 0 | 5,237,992,844 | 51% | ||
nurhayati | 0 | 522,818,352 | 12% | ||
markjason | 0 | 1,776,896,897 | 10% | ||
aamirijaz | 0 | 2,298,683,216 | 15% | ||
bobthebuilder | 0 | 761,088,588 | 22.5% | ||
deathwing | 0 | 373,802,273,833 | 22.8% | ||
irbot | 0 | 871,386,341 | 25% | ||
jlsplatts | 0 | 19,716,392,388 | 2% | ||
bigdizzle91 | 0 | 1,311,911,262 | 6% | ||
sayee | 0 | 82,835,998,910 | 100% | ||
hanggggbeeee | 0 | 1,074,310,723 | 6% | ||
esteem.app | 0 | 116,074,648 | 0.5% | ||
nathanpieters | 0 | 2,423,739,013 | 50% | ||
gianluccio | 0 | 80,845,037,922 | 42.3% | ||
eonwarped | 0 | 93,621,226,811 | 3.6% | ||
postpromoter | 0 | 373,734,968,791 | 11.4% | ||
ciuoto | 0 | 3,884,990,845 | 23.5% | ||
emrebeyler | 0 | 118,911,680,443 | 11.4% | ||
carolineschell | 0 | 67,202,501,823 | 47% | ||
joedukeg | 0 | 1,314,777,680 | 25% | ||
mytechtrail | 0 | 58,864,594,021 | 15% | ||
traf | 0 | 1,616,347,457,626 | 45% | ||
marcolino76 | 0 | 4,173,970,954 | 23.5% | ||
jacopo.eth | 0 | 900,067,272 | 39.95% | ||
straykat | 0 | 4,655,368,169 | 12.5% | ||
tomatom | 0 | 1,150,131,444 | 6% | ||
mineopoly | 0 | 3,997,874,193 | 25.5% | ||
spydo | 0 | 20,801,206,446 | 6% | ||
r00sj3 | 0 | 20,803,317,569 | 6% | ||
ronpurteetv | 0 | 1,113,407,128 | 6% | ||
abmakko | 0 | 1,214,144,434 | 15% | ||
gabrielatravels | 0 | 2,537,906,863 | 4.8% | ||
calumam | 0 | 2,382,576,504 | 25.5% | ||
alequandro | 0 | 9,495,041,817 | 23.5% | ||
ricardo993 | 0 | 1,785,815,315 | 7.2% | ||
pab.ink | 0 | 26,021,349,993 | 23.5% | ||
edprivat | 0 | 2,514,747,826 | 1.71% | ||
jlordc | 0 | 34,519,979,112 | 30% | ||
jazzhero | 0 | 3,323,841,035 | 7.5% | ||
steemflagrewards | 0 | 407,015,497,993 | 100% | ||
warpedpoetic | 0 | 1,399,454,387 | 5.7% | ||
cadawg | 0 | 32,039,526,944 | 9% | ||
ocd-witness | 0 | 908,246,262 | 12% | ||
piumadoro | 0 | 21,675,491,218 | 47% | ||
madefrance | 0 | 1,774,613,419 | 6% | ||
anikys3reasure | 0 | 634,825,028 | 15% | ||
takowi | 0 | 215,112,494,458 | 12% | ||
mad-runner | 0 | 73,443,385,334 | 32.9% | ||
miroslavrc | 0 | 2,771,352,828 | 6% | ||
sbarandelli | 0 | 3,331,478,809 | 47% | ||
sanderjansenart | 0 | 21,620,912,208 | 12% | ||
vittoriozuccala | 0 | 16,563,013,413 | 23.5% | ||
adamada | 0 | 50,358,019,871 | 7.5% | ||
obsesija | 0 | 2,191,469,909 | 5.7% | ||
blainjones | 0 | 3,100,225,021 | 3.75% | ||
spaghettiscience | 0 | 31,526,253,429 | 47% | ||
mlrequena78 | 0 | 4,140,679,106 | 47% | ||
legendchew | 0 | 39,373,555,910 | 100% | ||
quochuy | 0 | 778,181,014,221 | 20.01% | ||
manojbhatt | 0 | 645,264,212 | 15% | ||
steemexperience | 0 | 36,204,049,942 | 25.5% | ||
el-dee-are-es | 0 | 33,837,904,711 | 10% | ||
xawi | 0 | 10,443,000,605 | 30% | ||
indigoocean | 0 | 2,914,704,066 | 6% | ||
bafi | 0 | 2,482,352,618 | 47% | ||
phage93 | 0 | 3,747,515,516 | 47% | ||
veteranforcrypto | 0 | 1,118,527,859 | 6% | ||
romeskie | 0 | 74,897,705,381 | 20% | ||
serialfiller | 0 | 2,319,424,545 | 50% | ||
ifeoluwa88 | 0 | 14,425,763,198 | 30% | ||
enforcer48 | 0 | 119,617,165,825 | 15% | ||
pinas | 0 | 504,011,567 | 50% | ||
bdmillergallery | 0 | 51,073,140,856 | 6% | ||
cooltivar | 0 | 144,227,334,718 | 37.6% | ||
konradxxx3 | 0 | 535,725,428 | 6% | ||
haccolong | 0 | 4,290,721,948 | 6% | ||
gaottantacinque | 0 | 224,103,152 | 100% | ||
nattybongo | 0 | 9,853,201,356 | 47% | ||
doodle.danga | 0 | 1,427,360,607 | 47% | ||
olumzy | 0 | 2,493,924,266 | 3.6% | ||
ocdb | 0 | 39,810,607,534,460 | 11.4% | ||
diogenes84 | 0 | 0 | 25% | ||
armandosodano | 0 | 166,893,418,864 | 32.9% | ||
bestofph | 0 | 908,389,872 | 7.5% | ||
hoaithu | 0 | 1,570,744,169 | 5.1% | ||
gasaeightyfive | 0 | 321,321,455 | 100% | ||
anhvu | 0 | 1,044,837,856 | 4.8% | ||
pradeepdee6 | 0 | 5,584,588,750 | 4.8% | ||
javyeslava.photo | 0 | 1,719,503,019 | 3.6% | ||
starstrings01 | 0 | 124,196,191,612 | 25% | ||
cribbio | 0 | 616,584,386 | 100% | ||
admiralbot | 0 | 6,273,389,090 | 100% | ||
athunderstruck | 0 | 1,944,610,183 | 6% | ||
stefano.massari | 0 | 66,848,200,986 | 41% | ||
sanjeev021 | 0 | 5,958,845,182 | 3% | ||
tsunsica | 0 | 1,997,907,208 | 12% | ||
middleearth | 0 | 1,881,928,752 | 47% | ||
adinapoli | 0 | 10,170,604,757 | 23.5% | ||
discovery-it | 0 | 971,922,930,585 | 47% | ||
devann | 0 | 11,416,676,585 | 4% | ||
chisdealhd | 0 | 2,849,463,958 | 30% | ||
variedades | 0 | 1,606,202,848 | 4.56% | ||
juanbg | 0 | 6,184,150,702 | 23.5% | ||
lallo | 0 | 22,174,391,003 | 47% | ||
steemtelly | 0 | 5,909,028,701 | 20.01% | ||
cooperfelix | 0 | 2,512,410,357 | 32.9% | ||
limka | 0 | 106,414,912 | 82.6% | ||
giftgiver | 0 | 9,964,325,306 | 10% | ||
jlordz | 0 | 633,683,832 | 30% | ||
samuel.steem | 0 | 1,466,574,388 | 42.3% | ||
photographercr | 0 | 4,446,667,493 | 2.28% | ||
squareonefarms | 0 | 1,316,365,281 | 6% | ||
titti | 0 | 21,548,341,202 | 47% | ||
maryincryptoland | 0 | 12,256,299,888 | 47% | ||
memehub | 0 | 86,736,599,673 | 100% | ||
stregamorgana | 0 | 1,828,551,263 | 47% | ||
yiobri | 0 | 2,550,239,225 | 6% | ||
meeplecomposer | 0 | 3,873,961,597 | 28.2% | ||
rollingbones | 0 | 131,607,631 | 25.5% | ||
beerlover | 0 | 1,709,456,310 | 1.2% | ||
blumela | 0 | 2,421,988,630 | 4.7% | ||
aninsidejob | 0 | 6,483,214,748 | 100% | ||
maruskina | 0 | 35,918,183,506 | 23.5% | ||
claudietto | 0 | 2,649,098,485 | 23.5% | ||
victoriaxl | 0 | 1,637,466,816 | 23.5% | ||
omodei | 0 | 1,746,167,070 | 47% | ||
zaku-ag | 0 | 1,634,079,538 | 30% | ||
bala-ag | 0 | 1,447,398,577 | 15% | ||
r-ag | 0 | 128,022,478 | 30% | ||
xawi-ag | 0 | 537,968,896 | 15% | ||
class101 | 0 | 1,170,030,411 | 30% | ||
freedomring | 0 | 1,791,405,911 | 3% | ||
neoxiancity | 0 | 37,169,500,126 | 30% | ||
babytarazkp | 0 | 4,130,529,260 | 40% | ||
capitanonema | 0 | 1,633,087,037 | 47% | ||
damaskinus | 0 | 999,899,618 | 23.5% | ||
abh12345.stem | 0 | 1,455,642,224 | 75% | ||
elianaicgomes | 0 | 7,099,107,505 | 7.5% | ||
olaexcel-ag | 0 | 537,634,288 | 30% | ||
spt-skillup | 0 | 1,274,779,186,797 | 20% | ||
marriakjozhegp | 0 | 1,192,300,816 | 30% | ||
stem.alfa | 0 | 1,946,178,864 | 100% | ||
dw38h | 0 | 33,827,999,996 | 100% | ||
f76wz | 0 | 33,895,832,255 | 100% | ||
hk14d | 0 | 33,332,373,022 | 100% | ||
zeesh | 0 | 1,818,377,998 | 6% | ||
axel-blaze | 0 | 23,702,373,051 | 47% | ||
discovery-blog | 0 | 7,933,236,147 | 47% | ||
yggdrasil.laguna | 0 | 679,018,705 | 75% | ||
riccc96 | 0 | 1,328,265,290 | 11.75% | ||
mrhaldar | 0 | 2,800,842,927 | 15% | ||
cd-stem | 0 | 537,611,660 | 100% | ||
chicoduro | 0 | 992,444,570 | 25% | ||
delilhavores | 0 | 9,164,012,637 | 47% | ||
hjmarseille | 0 | 1,689,832,654 | 42.3% | ||
meandmyvolvo | 0 | 1,953,922,597 | 100% | ||
sharkthelion | 0 | 33,106,696,410 | 25% | ||
chapmain | 0 | 109,954,926 | 100% | ||
disagio.gang | 0 | 799,002,454 | 47% | ||
bela29 | 0 | 491,332,441 | 25% | ||
julesquirin | 0 | 1,345,032,425 | 9% | ||
mengene | 0 | 549,020,214 | 23.5% | ||
romytokic | 0 | 1,793,759,845 | 23.5% | ||
dpend.active | 0 | 858,224,494 | 2.4% | ||
hivetrending | 0 | 28,755,022,074 | 50% | ||
velinov86 | 0 | 1,827,261,299 | 5.7% | ||
ghastlygames | 0 | 3,915,672,578 | 47% | ||
peterpanpan | 0 | 32,973,310,485 | 47% | ||
mcsagel | 0 | 505,777,477 | 25.5% | ||
mami.sheh7 | 0 | 845,068,286 | 15% | ||
the100 | 0 | 904,648,162 | 12% | ||
matteus57 | 0 | 3,934,187,614 | 47% | ||
hextech | 0 | 23,652,149,875 | 10% | ||
ecency | 0 | 206,772,477,926 | 0.5% | ||
ilpaso | 0 | 946,527,006 | 23.5% | ||
actioncats | 0 | 9,838,212,232 | 8.4% | ||
joseq1570 | 0 | 630,676,524 | 14.1% | ||
flewsplash | 0 | 816,618,725 | 47% | ||
mercmarg | 0 | 1,718,032,253 | 8.55% | ||
reza-shamim | 0 | 698,952,410 | 5.7% | ||
olaunlimited | 0 | 8,200,880,718 | 4.8% | ||
mafia.wallet | 0 | 3,963,825,192 | 10% | ||
zhoten | 0 | 3,010,067,792 | 12% | ||
ecency.stats | 0 | 156,602,676 | 0.5% | ||
nftmart | 0 | 8,528,075,957 | 10% | ||
brofund-ag | 0 | 2,052,415,872 | 30% | ||
kawsar8035 | 0 | 2,230,900,611 | 3.42% | ||
tripode | 0 | 89,475,972,109 | 25% | ||
bindalove | 0 | 1,221,979,597 | 47% | ||
trangbaby | 0 | 26,421,565,201 | 20.01% | ||
pfwaus | 0 | 1,210,370,171 | 100% | ||
senseiphil | 0 | 10,498,770,598 | 5.7% | ||
nbs.gmbh | 0 | 860,307,273,626 | 11.4% | ||
divadstrokes | 0 | 2,954,216,054 | 23.5% | ||
dorkpower | 0 | 2,586,366,912 | 75% | ||
wannderingsoul | 0 | 775,551,840 | 100% | ||
paolazun | 0 | 587,848,840 | 6% | ||
crossculture | 0 | 181,102,091,179 | 25% | ||
blezyn | 0 | 564,386,373 | 6% | ||
mrtats | 0 | 16,136,955,235 | 40% | ||
ismaelrd04 | 0 | 12,104,183,291 | 100% | ||
kattycrochet | 0 | 4,055,978,822 | 22.5% | ||
chubb149 | 0 | 601,934,630 | 2.4% | ||
stemcur | 0 | 892,788,788 | 100% | ||
brofund-stem | 0 | 2,833,231,402 | 75% | ||
betterdev | 0 | 96,913,329,089 | 10% | ||
meritocracy | 0 | 644,258,702,186 | 5.7% | ||
blukei | 0 | 1,093,265,375 | 12.5% | ||
sillybilly | 0 | 531,572,545 | 100% | ||
he-index | 0 | 4,248,349,695 | 15% | ||
meestemboom | 0 | 472,967,725 | 25% | ||
academiccuration | 0 | 856,193,780 | 100% | ||
dcrops | 0 | 41,099,845,790 | 5.7% | ||
atexoras | 0 | 517,085,482 | 6% | ||
krishu.stem | 0 | 893,637,678 | 100% | ||
hykss.leo | 0 | 16,310,645,308 | 4.56% | ||
babeltrips | 0 | 3,806,880,987 | 10% | ||
peerfinance | 0 | 5,838,772,074 | 100% | ||
yggdrasilwind | 0 | 2,769,840,456 | 47% | ||
dronegirl | 0 | 323,229,279 | 100% | ||
repayme4568 | 0 | 559,672,913 | 23.5% | ||
cbridges573 | 0 | 1,418,790,935 | 3.75% | ||
ausbit.dev | 0 | 4,369,930,592 | 22.8% | ||
adamada.stem | 0 | 2,131,527,969 | 100% | ||
zdigital222 | 0 | 305,683,434 | 100% | ||
thecouncil | 0 | 841,273,190 | 10% | ||
lioz3018 | 0 | 463,072,208 | 100% | ||
maylenasland | 0 | 887,491,662 | 12.5% | ||
proofofbrainio | 0 | 23,620,554,786 | 16.83% | ||
mayorkeys | 0 | 12,273,038,423 | 30% | ||
hexagono6 | 0 | 519,761,386 | 5.7% | ||
leveluplifestyle | 0 | 2,917,112,999 | 6% | ||
heskay | 0 | 13,844,159,597 | 50% | ||
sarita3 | 0 | 1,726,200,634 | 47% | ||
chimp.ceo | 0 | 629,962,700 | 9% | ||
soychalbed | 0 | 1,190,052,574 | 12% | ||
brujita18 | 0 | 1,243,760,521 | 6% | ||
onealfa.pob | 0 | 738,698,012 | 4.5% | ||
krrizjos18 | 0 | 527,440,831 | 6% | ||
maridmc | 0 | 23,266,812,549 | 47% | ||
fotomaglys | 0 | 4,012,906,733 | 11.4% | ||
mattbrown.art | 0 | 1,915,970,112 | 23.5% | ||
memesupport | 0 | 587,359,987 | 30% | ||
holovision.stem | 0 | 92,740,220 | 50% | ||
holovision.make | 0 | 72,901,827 | 100% | ||
rebeysa85 | 0 | 1,147,195,495 | 23.5% | ||
tblings-art | 0 | 4,993,774,990 | 100% | ||
joseph23 | 0 | 1,213,767,606 | 25.5% | ||
photolovers1 | 0 | 2,098,207,185 | 6% | ||
partiesjohall | 0 | 2,232,009,887 | 12% | ||
meesterbrain | 0 | 612,901,917 | 50% | ||
dibblers.dabs | 0 | 762,652,544 | 0.95% | ||
mimi05 | 0 | 6,673,868,289 | 80% | ||
flamistan | 0 | 618,330,033 | 25.5% | ||
aprasad2325 | 0 | 2,115,248,363 | 5.7% | ||
solominer.stake | 0 | 753,049,043 | 75% | ||
solominer.stem | 0 | 853,286,292 | 100% | ||
farmingtales | 0 | 6,001,349,656 | 47% | ||
ivycrafts | 0 | 1,199,113,308 | 6% | ||
lexansky | 0 | 1,165,529,022 | 100% | ||
dimascastillo90 | 0 | 9,340,029,534 | 47% | ||
waffleuncle | 0 | 657,590,782 | 30% | ||
wendy0520 | 0 | 690,736,022 | 12% | ||
lynnnguyen | 0 | 1,076,828,237 | 20.01% | ||
beyondhorizonmm | 0 | 1,887,000,400 | 30% | ||
kimloan | 0 | 893,923,078 | 10% | ||
winnietran | 0 | 1,260,440,221 | 10% | ||
castles | 0 | 927,278,805 | 47% | ||
dia-monds | 0 | 17,787,110,362 | 100% | ||
lolztoken | 0 | 3,763,595,028 | 100% | ||
waivio.curator | 0 | 1,579,377,082 | 2.94% | ||
khoola | 0 | 1,846,123,007 | 25.5% | ||
sunnyvo | 0 | 3,171,275,842 | 10% | ||
trostparadox.vyb | 0 | 650,450,186 | 25.5% | ||
vyb.pob | 0 | 1,388,774,746 | 25.5% | ||
imoogin3v3rm0r3 | 0 | 1,119,331,872 | 30% | ||
tristan.todd | 0 | 2,883,806,565 | 12% | ||
listnerds | 0 | 90,836,911,764 | 20% | ||
saboin.pob | 0 | 0 | 4.5% | ||
vyb.curation | 0 | 786,506,445 | 25.5% | ||
str33tl1f3 | 0 | 825,230,810 | 12% | ||
ctp-curator | 0 | 1,789,902,942 | 100% | ||
pob-curator | 0 | 780,211,859 | 45% | ||
neoxag-curator | 0 | 1,018,453,015 | 58% | ||
stem-curator | 0 | 318,923,103 | 100% | ||
vyb-curator | 0 | 226,447,636 | 15% | ||
vyb.fund | 0 | 573,365,706 | 25.5% | ||
gerardoguacaran | 0 | 2,795,611,824 | 100% | ||
dragonmk47 | 0 | 2,074,702,385 | 3% | ||
randomsm | 0 | 8,963,099,697 | 100% | ||
chisfund | 0 | 856,151,303 | 30% | ||
lcrypt | 0 | 548,833,406 | 100% | ||
xocdb | 0 | 0 | -2.85% | ||
xtrafalgar | 0 | -32,727,744 | -11.25% | ||
xecency | 0 | 0 | -0.13% |
Nice tutorial! Keep bringing quality contents to STEMGeeks
author | anyiglobal |
---|---|
permlink | re-techlhab-2022325t73037496z |
category | hive-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"} |
created | 2022-03-25 06:32:39 |
last_update | 2022-03-25 06:32:39 |
depth | 1 |
children | 0 |
last_payout | 2022-04-01 06:32:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 58 |
author_reputation | 964,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 111,669,879 |
net_rshares | 0 |
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😍
author | chosenfingers |
---|---|
permlink | re-techlhab-r93fed |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2022.03.6"} |
created | 2022-03-21 11:49:09 |
last_update | 2022-03-21 11:49:09 |
depth | 1 |
children | 1 |
last_payout | 2022-03-28 11:49:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 183 |
author_reputation | 39,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 111,549,211 |
net_rshares | 7,433,315,193 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stemgeeks | 0 | 3,086,678,683 | 10% | ||
stemcuration | 0 | 167,569,547 | 10% | ||
yggdrasil.laguna | 0 | 0 | 5% | ||
saboin.stem | 0 | 37,264,634 | 10% | ||
techlhab | 0 | 4,141,802,329 | 100% |
Thanks @chosenfingers for the nice comment. I just love going in details 😊.
author | techlhab |
---|---|
permlink | re-chosenfingers-r93iqo |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2022.03.6"} |
created | 2022-03-21 12:59:18 |
last_update | 2022-03-21 12:59:18 |
depth | 2 |
children | 0 |
last_payout | 2022-03-28 12:59:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 75 |
author_reputation | 11,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 111,550,652 |
net_rshares | 1,905,933,994 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stemgeeks | 0 | 1,823,825,043 | 6% | ||
stemcuration | 0 | 79,975,194 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% | ||
saboin.stem | 0 | 2,133,757 | 6% |
 | <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>
author | curation-cartel |
---|---|
permlink | re-detailed-explanation-on-how-to-make-a-liquid-level-sensor-indicator-and-audio-notifier-using-arduino-nano-ultrasonic-sensor-and-20220322t073447z |
category | hive-163521 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2022-03-22 07:34:48 |
last_update | 2022-03-22 07:34:48 |
depth | 1 |
children | 0 |
last_payout | 2022-03-29 07:34:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 739 |
author_reputation | 1,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 111,575,988 |
net_rshares | 0 |
<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>
author | discovery-it |
---|---|
permlink | re-techlhab-2804zp1hv7 |
category | hive-163521 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2022-03-21 13:35:51 |
last_update | 2022-03-21 13:35:51 |
depth | 1 |
children | 0 |
last_payout | 2022-03-28 13:35:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 690 |
author_reputation | 67,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 111,551,524 |
net_rshares | 0 |
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)
author | ecency |
---|---|
permlink | re-2022321t13518248z |
category | hive-163521 |
json_metadata | {"tags":["ecency"],"app":"ecency/3.0.20-welcome","format":"markdown+html"} |
created | 2022-03-21 13:51:09 |
last_update | 2022-03-21 13:51:09 |
depth | 1 |
children | 0 |
last_payout | 2022-03-28 13:51:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 478 |
author_reputation | 613,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 111,551,971 |
net_rshares | 0 |
Pretty incredible stuff there. !discovery 47
author | enforcer48 |
---|---|
permlink | re-techlhab-r93kf2 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2022.03.6"} |
created | 2022-03-21 13:35:27 |
last_update | 2022-03-21 13:35:27 |
depth | 1 |
children | 1 |
last_payout | 2022-03-28 13:35:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 426,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 111,551,515 |
net_rshares | 0 |
Thanks for the nice comment @enforcer48 🤝.
author | techlhab |
---|---|
permlink | re-enforcer48-r9507r |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2022.03.6"} |
created | 2022-03-22 08:14:21 |
last_update | 2022-03-22 08:14:21 |
depth | 2 |
children | 0 |
last_payout | 2022-03-29 08:14:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.056 HBD |
curator_payout_value | 0.055 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 11,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 111,577,028 |
net_rshares | 84,161,253,716 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
enforcer48 | 0 | 82,271,542,166 | 10% | ||
stemgeeks | 0 | 1,809,645,401 | 6% | ||
stemcuration | 0 | 78,960,226 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% | ||
saboin.stem | 0 | 1,105,923 | 6% |
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)!
author | hivebuzz |
---|---|
permlink | notify-techlhab-20220321t154016 |
category | hive-163521 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2022-03-21 15:40:18 |
last_update | 2022-03-21 15:40:18 |
depth | 1 |
children | 0 |
last_payout | 2022-03-28 15:40:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,138 |
author_reputation | 369,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 111,555,030 |
net_rshares | 0 |
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
author | kwskicky |
---|---|
permlink | r94xgr |
category | hive-163521 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-03-22 07:14:51 |
last_update | 2022-03-22 07:14:51 |
depth | 1 |
children | 1 |
last_payout | 2022-03-29 07:14:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 135 |
author_reputation | 34,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 111,575,691 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yggdrasil.laguna | 0 | 0 | 3% |
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.
author | techlhab |
---|---|
permlink | re-kwskicky-r953eo |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2022.03.6"} |
created | 2022-03-22 09:23:15 |
last_update | 2022-03-22 09:23:15 |
depth | 2 |
children | 0 |
last_payout | 2022-03-29 09:23:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 690 |
author_reputation | 11,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 111,579,797 |
net_rshares | 2,853,339,193 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yggdrasil.laguna | 0 | 41,884,610 | 10% | ||
kwskicky | 0 | 2,811,454,583 | 100% |
Voted on behalf of the Neoxian city paper.
author | sayee |
---|---|
permlink | re-techlhab-l10h9fl9 |
category | hive-163521 |
json_metadata | {"tags":["neoxian"],"format":"markdown","canonical_url":"https://www.neoxian.city/@sayee/re-techlhab-l10h9fl9","app":"neoxian/1.0.0"} |
created | 2022-03-21 09:00:27 |
last_update | 2022-03-21 09:00:27 |
depth | 1 |
children | 1 |
last_payout | 2022-03-28 09:00:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 43 |
author_reputation | 400,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 111,545,974 |
net_rshares | 1,908,373,250 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stemgeeks | 0 | 1,826,047,289 | 6% | ||
stemcuration | 0 | 80,130,344 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% | ||
saboin.stem | 0 | 2,195,617 | 6% |
Thanks for the upvote @sayee highly appreciate it 🤝.
author | techlhab |
---|---|
permlink | re-sayee-r93jgo |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2022.03.6"} |
created | 2022-03-21 13:14:48 |
last_update | 2022-03-21 13:14:48 |
depth | 2 |
children | 0 |
last_payout | 2022-03-28 13:14:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 52 |
author_reputation | 11,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 111,550,994 |
net_rshares | 1,901,034,879 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stemgeeks | 0 | 1,819,359,554 | 6% | ||
stemcuration | 0 | 79,665,452 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% | ||
saboin.stem | 0 | 2,009,873 | 6% |
A good read with a very detailed explanation!! Well done boss🙌🏻🙌🏻
author | writermaximus |
---|---|
permlink | re-techlhab-r93fb4 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2022.03.6"} |
created | 2022-03-21 11:45:06 |
last_update | 2022-03-21 11:45:06 |
depth | 1 |
children | 1 |
last_payout | 2022-03-28 11:45:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 23,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 111,549,124 |
net_rshares | 5,968,922,885 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stemgeeks | 0 | 1,828,272,206 | 6% | ||
stemcuration | 0 | 80,282,658 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% | ||
saboin.stem | 0 | 2,254,837 | 6% | ||
techlhab | 0 | 4,058,113,184 | 100% |
Thanks for the comments @writermaximus 🤝.
author | techlhab |
---|---|
permlink | re-writermaximus-r93is1 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2022.03.6"} |
created | 2022-03-21 13:00:12 |
last_update | 2022-03-21 13:00:12 |
depth | 2 |
children | 0 |
last_payout | 2022-03-28 13:00:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 11,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_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 111,550,673 |
net_rshares | 1,903,482,772 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stemgeeks | 0 | 1,821,590,958 | 6% | ||
stemcuration | 0 | 79,820,230 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% | ||
saboin.stem | 0 | 2,071,584 | 6% |