MESURING PRESSURE WITH ARDUINO PRESSURE SENSOR (pressure transducer)

  Рет қаралды 23,845

Mikael Abehsera

Mikael Abehsera

Күн бұрын

Пікірлер: 96
@liowwenan4054
@liowwenan4054 Жыл бұрын
Wow, excellent work sir! Last 2 weeks I had a final-year project which required multiple pressure transducers. If I found your video earlier, the calibration for my sensors would have been much easier. But still, it can help me to improve my project's reliability. Thanks for the tips!
@MikaelAbehsera
@MikaelAbehsera Жыл бұрын
Glad I could help! got any feedback on the way the video was filmed? anything you wish was done differently or better? thanks!
@TalkieT
@TalkieT Жыл бұрын
I think you're lucky it worked at all without an explicitly common ground. You can power from external, but need to tie the sensor ground to the arduino ground. Looks like it was, but used the mains ground as the path
@MikaelAbehsera
@MikaelAbehsera Жыл бұрын
ah, true. I will fix this for future videos but I know a lot of the time with arduino you can get away with it as i have. thanks.
@MikaelAbehsera
@MikaelAbehsera Жыл бұрын
Made sure to fix this on the video I posted and gave you credit, thanks
@thereallife9741
@thereallife9741 10 ай бұрын
thanks that fixed my problem
@arabofon
@arabofon 4 ай бұрын
Exactly! That's the first thing that caught my eye.
@ethaninfante2768
@ethaninfante2768 9 ай бұрын
Thank you so much! I have a similar project using the pressure transducer replacing the arduino with an ESP32 but this video was a life saver!!
@sNEAKYnIGHTmUPPET
@sNEAKYnIGHTmUPPET 8 ай бұрын
I would love to compare notes with you, as I am doing a very similar thing
@MikaelAbehsera
@MikaelAbehsera 8 ай бұрын
Glad it helped! thanks for the feedback
@donaldsmith8236
@donaldsmith8236 2 ай бұрын
Thanks, enjoyed basic over view
@MikaelAbehsera
@MikaelAbehsera 2 ай бұрын
Glad you enjoyed it
@josephdaquila2479
@josephdaquila2479 10 ай бұрын
Can you link the video before this? Or a part of this series? Im interested in seeing how you set up the relay with the pump
@MikaelAbehsera
@MikaelAbehsera 10 ай бұрын
Sure there’s actually a playlist of the series, once it’s gets hot enough we can go outside and run the full system !
@josephdaquila2479
@josephdaquila2479 10 ай бұрын
​@@MikaelAbehseraoooh I'll be looking forward to that!
@meesiphht2769
@meesiphht2769 10 ай бұрын
I just wonder what good a setup like this is? I would think most would use the pressure sensor for a water level setup where they would want to turn a pump on and off according to a low/high pressure instead of what you're showing.
@MikaelAbehsera
@MikaelAbehsera 9 ай бұрын
its up to everyone to use it as they wish, I'm just trying to learn how these things wokr and share my experiences, since no one makes videos on it
@kinolar3210
@kinolar3210 8 ай бұрын
Thank you! I applied it to my course project
@MikaelAbehsera
@MikaelAbehsera 8 ай бұрын
Glad it helped! thanks for the feedback
@timlyg
@timlyg 14 күн бұрын
How sensitive is the sensor say for different depth of water?
@BorisSiber
@BorisSiber 11 ай бұрын
thx 4 sharing
@MikaelAbehsera
@MikaelAbehsera 11 ай бұрын
Thx 4 watching
@Canadian_Pakistani
@Canadian_Pakistani 6 ай бұрын
it is very nice and detailed tutorial. I am using almost similar setup. I am using 12V power supply but pump is not generating sufficient pressure. The cut off pressure written pump is 80psi but I am sensing the pressure reading fluctuating between 0-5 psi only. Don't know how to get higher pressure values
@MikaelAbehsera
@MikaelAbehsera 5 ай бұрын
I’m pretty sure 0-5 is actually the voltage and not the psi, there’s some calculations you gotta do, did you add that part ?
@Canadian_Pakistani
@Canadian_Pakistani 5 ай бұрын
@@MikaelAbehsera yes I have added that part too.
@georgelza
@georgelza Ай бұрын
love this... curious... have you used that sensor to measure water level... how accurate is it over a 3-4 meter tank. 100psi =6.895 bars about 70m capable so just wondering about accuracy at a 3-4m tank
@MikaelAbehsera
@MikaelAbehsera Ай бұрын
as some have pointed out we made some mistakes in the calculations but I think its not bad accuracy, for a large 3-4 meter tank i think i would use a float sensor, or another pressure sensor, I actually have both so ill have to get those videos made soon
@georgelza
@georgelza Ай бұрын
@@MikaelAbehsera be great if you can output the measurements to mqtt also... i currently have a ultrasonic and it's not accurate, depending on temp it builds concensation on sense causes readings to be all over the place.
@georgelza
@georgelza Ай бұрын
got sensors on the way... input voltage 5v, output 0-3.3v can measure up to 5m water column. going to look at your code and see how to modify to fit my use case... and then need to figure out how to add the mqtt capability...
@scrillies1234567
@scrillies1234567 Ай бұрын
(5.0/1023.0) // convert to voltage is confusing. What is 5. Is this a typo, should it be 0.5v? What is 1023?
@MikaelAbehsera
@MikaelAbehsera Ай бұрын
5 volts and the range of the analog which is 0 to 1023
@jlaustill
@jlaustill 5 ай бұрын
There is zero chance you were getting accurate results. I'm an engineer for a living. ADC's work by using a reference voltage and giving you a reading as a ratio to that reference. Since you were using an external power supply for the sensor, it was a different voltage than that which the arduino had as a reference. You should always get the power and ground from the ADC, which in this case would be the arduino itself so you can get an accurate reference voltage. Pressure transducers are setup to read .5 volts at their zero, which for PSIG is 0 psig, and for map sensors slash PSIA, .5 volts would be absolute vacuum, so at sea level you would be reading somewhere around .8 volts due to the 14.7 PSI of air pressure at sea level. Then 4.5 volts is the max reading of the sensor. So for your 100 PSIG sensor, all you needed to do was map the read voltage from .5 to 4.5 to 0 to 100. BUT, that only works when you use the correct reference voltage. On 3.3v systems, you map from .3 to 3 instead.
@MikaelAbehsera
@MikaelAbehsera 5 ай бұрын
I’ll have to test this and report back, thanks for the feedback !
@frankysnephew
@frankysnephew 3 ай бұрын
@@MikaelAbehsera : You don't have to test anything, dude, this is pure logic. My question is, if you don't know what you are doing, WHY on earth are you trying to pretend you do? 🤔
@SchmidtintheWorkshop
@SchmidtintheWorkshop 2 ай бұрын
@@frankysnephewdick comment.
@gl897
@gl897 2 ай бұрын
@frankysnephew this is unnecessary. Your comment is rude. I learnt a lot from this video, and the OP never claimed to know everything. He's open to constructive assistance. Unlike your waste of space comment.
@MikaelAbehsera
@MikaelAbehsera 2 ай бұрын
These videos are to figure it out with my viewers since 90% of my content is niche and no one teaches or shows the process of figuring it out
@countrymileoffroad8523
@countrymileoffroad8523 11 ай бұрын
hello, I have a couple questions, first off I am building an HHO torch setup, I currently have it all wired up for just an off switch, but I want it to turn off/ cut power when it hits 5psi, I will be running my Arduino into this torch build so I can set the parameters as I need. my biggest problem is I need the code to enter and I don't know how to, can you help me with the majority of the code? and I will figure out the rest.
@josephdaquila2479
@josephdaquila2479 11 ай бұрын
Is this rated for fluids other than water? EDIT: definitely think it will work well with fuel then! You're "hashtagging" ESP32, but you're using an arduino, so Im wondering if you just change the input voltage into the device for it to work with the ESP. 5 V down to 3.3 V? Because sensors are input devices to a microcontroller right? So the signal has to be what the device expects.
@MikaelAbehsera
@MikaelAbehsera 11 ай бұрын
This specific one is for cars and I think it can do gas / coolant / oil / air / water
@MikaelAbehsera
@MikaelAbehsera 11 ай бұрын
When you buy one check the what it can handle or it’s rating to make sure
@josephdaquila2479
@josephdaquila2479 11 ай бұрын
Thank you Mikael! @@MikaelAbehsera
@NickCruz-c5j
@NickCruz-c5j 5 ай бұрын
Excellent video. Is your arduino code available for download somewhere? Also, what sensor model is that? I'm hoping to make a similar system of my own. Thanks!
@MikaelAbehsera
@MikaelAbehsera 3 ай бұрын
code no, i try to make people follow in the video so they can actually learn, and for the sensor I just got it off amazon!
@alphanov2009
@alphanov2009 Жыл бұрын
What is the model of the pressures sensor please?
@MikaelAbehsera
@MikaelAbehsera Жыл бұрын
Not sure on model but I just got it on Amazon, I’m pretty sure it’s the same as a generic car pressure sensor
@josephdaquila2479
@josephdaquila2479 11 ай бұрын
Based off of this, maybe the answer to my question is yes? LOL@@MikaelAbehsera
@blessingmaseko8620
@blessingmaseko8620 5 ай бұрын
Did you manage to complete this project have been checking but couldn't find new videos
@MikaelAbehsera
@MikaelAbehsera 3 ай бұрын
had some hickups, will be continuing this winter
@JonasSebastianBarjauMateu
@JonasSebastianBarjauMateu 9 ай бұрын
Atmospheric pressure at sea level is around 15 psi. 0 psi would be absolute vacuum.
@PHM_Tech
@PHM_Tech 9 ай бұрын
No, absolute vacuum does not have any pressure because has no air molecules, vaccum pressure is measured in negative PSI on vacuum chambers (example)
@JonasSebastianBarjauMateu
@JonasSebastianBarjauMateu 9 ай бұрын
@@PHM_Tech Riiiiight, ty
@PHM_Tech
@PHM_Tech 9 ай бұрын
@@JonasSebastianBarjauMateu You're welcome
@MikaelAbehsera
@MikaelAbehsera Ай бұрын
yeah looking back and as some comments have pointed out I made mistakes in my calculations, I will fix going forward, thanks guys !
@IPsYoNiXx
@IPsYoNiXx 3 ай бұрын
What is that T fitting adapter called? Looking for one but i cant find it
@MikaelAbehsera
@MikaelAbehsera 3 ай бұрын
if I remember correctly the one I got was for car oil pressure, either way it wasnt the best
@cessromer7078
@cessromer7078 7 ай бұрын
Seems the pressure sensor especifications is for high pressure field and the power must come from arduino preferible than external power also for relay and water pump. However very nice set up.
@MikaelAbehsera
@MikaelAbehsera 3 ай бұрын
yup, Id love to try making my own pressure sensor with a low resistance spring and some 3d printing
@isov4345
@isov4345 7 ай бұрын
awesome..
@MikaelAbehsera
@MikaelAbehsera 6 ай бұрын
thanks
@tonybell9201
@tonybell9201 7 ай бұрын
Can this type of sensor also be used to caculate water depth if it was submerged to a specific depth?
@MikaelAbehsera
@MikaelAbehsera 6 ай бұрын
i would use a water level sensor
@hugocarrasco7734
@hugocarrasco7734 8 ай бұрын
How would you make arduino control a vacuum sensor?
@MikaelAbehsera
@MikaelAbehsera 3 ай бұрын
gonna add that to the list but its probably similar
@JonasSebastianBarjauMateu
@JonasSebastianBarjauMateu 9 ай бұрын
Atmospheric pressure at sea level is aprox 15 psi. 0 psi would be absolute vacuum.
@MikaelAbehsera
@MikaelAbehsera 9 ай бұрын
yup silly mistake on my end, will be sure to mention it on the final project, thanks jonas.
@PauloAgustin-dt9mx
@PauloAgustin-dt9mx 9 ай бұрын
will this work on omega px603 transducer. also do you have a copy of your code. Thanks
@estebansalvatore2715
@estebansalvatore2715 4 ай бұрын
does anyone know the name of the metal piece where he screw the pressure transducer? is it comercially available or is it custom made?
@MikaelAbehsera
@MikaelAbehsera 3 ай бұрын
I found this one on amazon i think as a car pressure sensor part, but its not the best honestly
@ryanlow604
@ryanlow604 7 ай бұрын
How long is the pressure sensor last in Working environment?
@MikaelAbehsera
@MikaelAbehsera 6 ай бұрын
not sure, thats something we should test
@vidotti911
@vidotti911 11 ай бұрын
Would this work with esp32?
@MikaelAbehsera
@MikaelAbehsera 11 ай бұрын
yes, I try to make all my vids work on a range of microcontrollers including esp32
@vidotti911
@vidotti911 11 ай бұрын
Thanky you!@@MikaelAbehsera
@camaqazi
@camaqazi 9 ай бұрын
hey is it possible to get the code for the pressure sensor ? Thanks!
@JOSEBENJAMINROJASREYNOSO
@JOSEBENJAMINROJASREYNOSO 8 ай бұрын
Where i can find the presure sensor?
@MikaelAbehsera
@MikaelAbehsera 3 ай бұрын
I used a car pressure sensor off amazon
@shravanimargaj8439
@shravanimargaj8439 4 ай бұрын
can we get the circuit diagram
@MikaelAbehsera
@MikaelAbehsera 3 ай бұрын
check the video for those details
@dileepkumarnair5998
@dileepkumarnair5998 2 ай бұрын
Durability??
@MikaelAbehsera
@MikaelAbehsera 2 ай бұрын
no idea, the fitting i got was not good leaked too much
@rodwhittaker5704
@rodwhittaker5704 Жыл бұрын
Do you have the link to the arduino code?
@MikaelAbehsera
@MikaelAbehsera Жыл бұрын
was having some issues with sharing the code, can you join our discord? i can send it on there
@i3dgearmarine908
@i3dgearmarine908 8 ай бұрын
You have this wrong. The range of those pressure transducers if from 0.5V to 4.5V. .5V=0 psi and 4.5V=range of sensor. So you need to subtract .5 V and then divide by 4V. Any reading outside the range of .5 to 4.5 is an error. This is intentional with these transducers so you can detect a faulty sensor. Very misleading video showing people an incorrect calculation.
@vitasartemiev
@vitasartemiev 8 ай бұрын
That output range is only if input is rock solid 5v. In his example he had 0.45v at 1atm. Going by your equation we end up with negative pressure.
@MikaelAbehsera
@MikaelAbehsera Ай бұрын
yeah looking back I need to rework my whole calculations but I think the idea still gets through to the viewer, most of these videos are just figuring it out as we go since no one makes documation on these yet, will fix in the future!
@scrillies1234567
@scrillies1234567 Ай бұрын
"very misleading" omg the guy is doing a experimental tutorial LOL
@maximsosnovski705
@maximsosnovski705 Жыл бұрын
2nd
@asulyasulya3255
@asulyasulya3255 Жыл бұрын
1
MEASURING WATER FLOW WITH ARDUINO #arduino #esp32 #waterpump
19:28
Mikael Abehsera
Рет қаралды 16 М.
HVAC Pressure Transducer Operation and Testing!
7:07
AC Service Tech LLC
Рет қаралды 81 М.
The Best Band 😅 #toshleh #viralshort
00:11
Toshleh
Рет қаралды 22 МЛН
Enceinte et en Bazard: Les Chroniques du Nettoyage ! 🚽✨
00:21
Two More French
Рет қаралды 42 МЛН
Control WATER with a 12V SOLENOID & ARDUINO! #arduino #esp32
19:32
Mikael Abehsera
Рет қаралды 9 М.
0x01 Intro to Reverse Engineering
1:21:21
Exploit it
Рет қаралды 192
Pressure Sensor - Arduino
17:52
Ovens Garage
Рет қаралды 206 М.
CHEAP DIY BOOST GAUGE
43:58
upir
Рет қаралды 233 М.
Smart Boat 14: Oil Pressure monitor with ESP32, INA219 and Home Assistant
22:47
Smart Boat Innovations
Рет қаралды 6 М.
Experiment: Arduino Pressure Sensor inside a DIY Inflatable
9:17
Becky Wonders (Becky Marshall Design)
Рет қаралды 90 М.
Ultra Wideband Realtime Location System using ESP32 and Unity
48:13
Playful Technology
Рет қаралды 76 М.
Arduino Temperature Gauge
34:43
upir
Рет қаралды 75 М.
The Best Band 😅 #toshleh #viralshort
00:11
Toshleh
Рет қаралды 22 МЛН