IoT Water Meter with ESP32 - Full Tutorial and Code

  Рет қаралды 50,302

Kevin Darrah

Kevin Darrah

Күн бұрын

Пікірлер: 56
@Kevindarrah
@Kevindarrah 5 жыл бұрын
Hey sorry for the re-upload... had an editing error in that last one I had to fix
@j0ecam123
@j0ecam123 5 жыл бұрын
Hi Kevin, thank you for showing us this. Where is the code for it? Thanks again, Joe
@michaelpadovani9566
@michaelpadovani9566 5 жыл бұрын
i just wanted to say this is brilliant and i take comfort knowing I wasn't the only one with an idea to do something exactly like this!!
@alrichmond4341
@alrichmond4341 4 жыл бұрын
Kudos for figuring out the way to instrument that meter. Outstanding.
@MadScienceWorkshoppe
@MadScienceWorkshoppe 5 жыл бұрын
Love that "remove after installation" sticker
@HillsWorkbench
@HillsWorkbench 5 жыл бұрын
Love these small start-to-finish projects!
@EL90291
@EL90291 5 жыл бұрын
Have you thought. about using an optical sensor on the small x.001 cadran ?
@fuzzy1dk
@fuzzy1dk 5 жыл бұрын
might also be possible to use a photo sensor to detect the black stripe on the small red dial
@nrdesign1991
@nrdesign1991 5 жыл бұрын
My water meters have a metallic, very reflective cogwheel in them that would allow to optically get those impulses.
@Rouverius
@Rouverius 5 жыл бұрын
I'm guessing that some of that signal noise from that analog Hall Effect sensor could be from EM interference. Maybe try using shielded cabling from the sensor to the ESP32? Anyway, cool project. Hey, please reveal how this solved your water bill mystery in the next video.
@craiglarson2346
@craiglarson2346 3 жыл бұрын
Kevin, Thanks for the video. I have been working on a similar measurement project only using a QMC5883 magnetometer. Yes, filtering is the biggest challenge and I wanted to share the simple method I built for you and your users. Interesting to see that your sensor output was sinusoidal as I would have thought it to be a square wave like your process output. My sensor output is entirely sinusoidal and noisy. As shown in the code below, my approach was to test for an upbeat followed by a downbeat in the sine curve given by the rotating magnet in the meter. (In calculus terms, I am testing for a negative-to-positive change in the first derivative.) These upbeat/downbeats are compared to a threshold that the user needs to set based on testing. I only take action after the upbeat with the routine called EventAction(). In that routine the elapsed time can be captured and recorded for computing flow in needed. (I’m using an SD card and my MCU is a Atmega386-based Nano). I discovered that it was important to test for small, but dithering sensor changes. You don’t know if the water meter is going to stop on a pole, or between poles. When the meter is stopped, then I go through a process of quieting the upbeat/downbeat test variables, maxDelta and minDelta, by resetting them to zero. I found this to help because sometimes the noise was big enough to trigger a false cycle. The code below is a small extract from my program loop but captures the essence of my approach. To first explain the variables: x, y, and z are the magnetometer sensor readings. I choose to use x. maxDelta is collecting upward curve movement minDelta is collecting downwared curve movement Delta_Threshold is set by experimentation with curve characteristics flag_DownHappened & flagUpHappened are testing for completion of a curve period, (or pulse) void loop() { int x,y,z; qmc.read(&x,&y,&z); if ((x - x_last) >= 0) {maxDelta = (maxDelta + (x - x_last)); minDelta = 0;} if ((x - x_last) < 0) {minDelta = (minDelta + (x - x_last)); maxDelta = 0;} if((maxDelta > (Delta_Threshold)) && (flag_DownHappened == true)) // up beat - Pulse occured { flag_DownHappened = false; //reset for one-shot flag_UpHappened = true; //ready for down beat EventAction(); //Take some action on the completed event maxDelta = 0; //reset for next cycle } else if((minDelta < (-1*Delta_Threshold)) && (flag_UpHappened == true)) // down beat { flag_UpHappened = false; //reset for one-shot flag_DownHappened = true; //ready for up beat minDelta = 0; //reset for next cycle } x_last = x; delay(5); } }
@jimwire
@jimwire Жыл бұрын
im trying to use the qmc5883l i am having alot of issues. are you able to help me?
@MadScienceWorkshoppe
@MadScienceWorkshoppe 5 жыл бұрын
I used to work in metering. We'd get a lot of complaints of "the metering is running fast" which is literally impossible. Meters run slower over time, if anything. They don't look at their toilet that never stops running, needs a $15 part available anywhere, and is pretty literally flushing hundreds of dollars down the drain every month.
@jeremyseveric9392
@jeremyseveric9392 4 жыл бұрын
did you use the same wiring diagram as the instructable? I noticed you use a different sensor and instead of the 5v you're using the 3.3v, I am currently working on a project with meter monitoring and I am a little out of my element with the electrical side of things. Thanks in advanced.
@beefoon3202
@beefoon3202 4 жыл бұрын
There is a hall sensor in ESP32, can we use it for this situation?
@imtrue2132
@imtrue2132 2 жыл бұрын
Perhaps an idea to add a time stamp in the code together with the data from the sensor. That way you could easily graph monthly usages and so
@nrdesign1991
@nrdesign1991 5 жыл бұрын
Any idea on how the ECR thingy registers how much water is used?
@bencotech
@bencotech 6 ай бұрын
Is it possible to just install a flow meter which the esp can read? in the pipe after the actual meter
@xyloidify
@xyloidify 5 жыл бұрын
time to make videos for hassio 😃 love your videos!
@artistfriedrich
@artistfriedrich 5 ай бұрын
did you try to shield your hall sensor from outside... magnetic material like a tin can or more effective with permalloy foil ?
@artistfriedrich
@artistfriedrich 5 ай бұрын
shield from outside the sensor...
@hybrid.domotic
@hybrid.domotic 2 жыл бұрын
Hey Kevin , i love the way you explain ,just one thing : can you paste the link to the video that explain how to hide passwords that are coded in String format in our sketch ,because flash encryption is very difficult and no video that explain exactely how to proced , thank you again and waiting for the link soon.
@Realcryptotalk
@Realcryptotalk 2 жыл бұрын
Sir , I am trying to put it to sleep triggered by a water detector sensor to wake up the esp32 from deep sleep. Since in such a case the loop part of the code never gets executed. Would moving the code in the loop section to setup before the sleep is triggered work ? I am new to this so would appreciate your guidance in this regard.
@terrydsilva5061
@terrydsilva5061 5 жыл бұрын
Wow! Excellent Job and explanation! Many Thanks!
@tuanquang6349
@tuanquang6349 11 ай бұрын
How does it work when the GPIO input of the esp only has 3.3V max. It will. That sensor operates at 5V. Will it damage the esp quickly?
@sgman1234
@sgman1234 3 жыл бұрын
Hi, I'm trying to set this up for my water meter. I came across many version of DRV5056 with different sensing range for the magnet inside the water meter. Which one did you use in the video? Thanks
@baudneo
@baudneo Жыл бұрын
You are a life saver. Thanks for making this video!
@willyv7940
@willyv7940 4 жыл бұрын
Hi. this is a great project. I am getting a variable or field 'handleMessage' is void error. Any ideas.
@prathambumb5593
@prathambumb5593 5 жыл бұрын
Excellent 👌
@chrischris6399
@chrischris6399 3 жыл бұрын
Good work, so this is bascialy a pure software solution. I ordered a few DRV5056A1 as well, good sensor. I think your water meter is quite special, it produces a strong magnet field than other meters. Have you ever measure the voltage change from the sensor output pin with a multimeter? My water meter, and the water meter in the Instructable project, only produces super weak field, so my DRV5056A1 output pin voltage only varies from lowest 0.600V to highest 0.605V, I don't think the ESP32 ADC 12bit can deal with this kind of tiny voltage change, not reliably anyway . therefore, the instructable project did use an OpAmp for a good reason, his voltage change is about the same, only 5mv change. When you have time, could you please help to measure the voltage change of the sensor pin ? much appreciate it!
@mohazez6094
@mohazez6094 4 жыл бұрын
hi good job....but i think you should use deep sleep mode for esp32 ...because if you donot flush the waster the esp should go to sleep to save power consumption...
@seebaastian
@seebaastian 5 жыл бұрын
I can see that you have processing. nice ;)
@saitowang8951
@saitowang8951 4 жыл бұрын
I have successfully used a HMC5983 Triple Axis Compass Magnetometer (as it is cheap and readily available) to detect the water meter. The filtering is the key here as @Kevin Darrah points out. I do come across two issue, 1, in long term when the surrounding of the water meter changed (e.g. you put some stuff close to the meter) that may affect the baseline of the magnetic flux (the whole wave will go higher or lower). So the filtering will have to deal with that (e.g. recenter). 2, there are back and forth movement in the water meter when there is no water use (I assume external change of water pressure caused that) and sometime that movement triggers many false pulses. I imagine the only way to overcome that is to employ a second sensor to create a quadrature signal (at 90 degree of the first sensor). Note that the back an forth can be more than half a turn in my experience.
@craiglarson2346
@craiglarson2346 4 жыл бұрын
@Sai To Wang. Excellent. I am now configuring a QMC5883 magnetometer to do the same thing. The QMC is on a board marked HW-127. It appears that the Z-axis is most sensitive to the flux change as the magnet spins. And that would allow the HMC/QMC boards to be simply mounted face-to-meter so the Z-axis is perpendicular to the mount position on the meter. I noticed that in this orientation the spin direction can be detected by a leading/lagging X-axis or Y-axis curve, or more obviously, the reversal of the curve on the Z-axis (down then up vs. up then down). The use of X or Y-axis depends on the mounting orientation on the meter. That may solve detecting the backwards flow problem. I just tested this on the bench by passing a magnet back and forth over the sensor and indeed the Z-axis curve flip flops depending on which direction I pass the magnet.
@jimwire
@jimwire Жыл бұрын
@@craiglarson2346 did you ever have any luck with this? i am having some issues using the qmc5883l anyway you could help?
@jimwire
@jimwire Жыл бұрын
i am having issues with the qmc5883l are you able to help me?
@torbenbang4259
@torbenbang4259 5 жыл бұрын
Nice project. Is the source code available somewhere?
@avejst
@avejst 5 жыл бұрын
Great project as always :-) Thanks for sharing
@note380
@note380 4 жыл бұрын
Hi Kevin , This is interesting. I have been doing this atmega 328 barebones and deepsleep. Basically count interrupts and periodically send the data through lorawan. I am interested however on how to do deep sleep and still get interrupts to count the pulses and periodically send the data over the internet using esp 32 which I realize I have some gaps since I don't want it always waking up when an interrupts comes in but just increase the counter and the do timed wakeups for transmission, kindly help in guiding how I can make it work with esp32.
@alisumen7972
@alisumen7972 3 жыл бұрын
Hi you can use STM32L series mcu. and count with DMA. So you can periodically send data wake up from RTC
@ZachRenwickData
@ZachRenwickData 2 жыл бұрын
this is really cool!
@yurmajestyisnotimpressed3789
@yurmajestyisnotimpressed3789 4 жыл бұрын
Good work
@xConundrumx
@xConundrumx 3 жыл бұрын
rofl... Do they actually come check the meter in person where you live? If so they might not be overjoyed and think you are trying to influence the meters operation.
@ronaldomartire7934
@ronaldomartire7934 5 жыл бұрын
Great project as usually. Are you planning to share the code?
@Kevindarrah
@Kevindarrah 5 жыл бұрын
yep, check description
@Kevindarrah
@Kevindarrah 5 жыл бұрын
@@ronaldomartire7934 oh wow, my bad... thought I had it up there. It's there now
@ronaldomartire7934
@ronaldomartire7934 5 жыл бұрын
@@Kevindarrah Thanks a lot!!! Again, you've done a great job and have inspired many people!
@notmyrealname3462
@notmyrealname3462 4 жыл бұрын
I'm sure that most wives or teenage daughters would really be interested in this.
@SuperEvo1990
@SuperEvo1990 2 жыл бұрын
how about using a pipe with a turbine on one side connected to a magnet and a sensor at the top. it could clean the installation process. In my country, we don't have water meters, Also, we have to buy it from private companies there's no water line in my area, I and landlord are sharing the tank so there's always a kerfuffle about who is using most water right now we have a system of per head usage. but watching this I might as well try this.
@FindLiberty
@FindLiberty 5 жыл бұрын
Very nice.
How To ESP32 Video Player - vPlayer Board
17:17
Kevin Darrah
Рет қаралды 2,2 М.
#332 ESP32  OTA tutorial with tricks (incl. OTA debugging)
10:17
Andreas Spiess
Рет қаралды 138 М.
ESP32 CAM Blynk Multiple Camera Surveillance
8:41
Viral Science - The home of Creativity
Рет қаралды 519 М.
Solar Weather Station [WiFi, MQTT, Smart Home, ESP8266]
11:06