Pressure Sensor - Arduino

  Рет қаралды 195,286

Ovens Garage

Ovens Garage

Күн бұрын

Пікірлер: 324
@OvensGarage
@OvensGarage 4 жыл бұрын
At 10:57, the number is not a decimal because the analog input values only return whole integers, my mistake.
@siraitkreatifchanel
@siraitkreatifchanel 4 жыл бұрын
can you share the new code ?
@OvensGarage
@OvensGarage 4 жыл бұрын
@@siraitkreatifchanel Code doesn't change
@jondonlon1407
@jondonlon1407 4 жыл бұрын
@@OvensGarage Great video! This helped me a ton. I'm not sure I'm understanding the 10:57 comment though. I think I understand the integer vs decimal part, but why is it reading 102psi instead of 0psi? Was this filmed before you added the "pressureValue = ((pressureValue-pressureZero)*pressuretransducermaxPSI)/(pressureMax-pressureZero); //conversion equation to convert analog reading to psi" line? Again, fantastic and very helpful video! I'm just trying to educate myself.
@juniordiegues5090
@juniordiegues5090 3 жыл бұрын
please friend !!! help me with this code !! I need to print on the TM 1637 display !!! I can't help showing it! please, can you help me ?
@guymartialdivakou3861
@guymartialdivakou3861 2 жыл бұрын
@@jondonlon1407 Actually if you read the code you can see that the 102 is not a PSI value, it is the value between 0 - 1024 converted by the Arduino (equivalent to 0-5V). That is printed because he has put the real PSI value in comment (the code line below the reading() line). If he uncomments that line of program you will see 0 PSI as value. So 102 is equivalent to 0 psi witch is the good value.
@jasony9950
@jasony9950 4 жыл бұрын
Dude! This is by far the best video of pressure sensor I can find. Great job of explaining your code. Most videos just talk about the hardware yet forget about coding. I plan on using this video to setup pressure sensors for an air ride system.
@OvensGarage
@OvensGarage 4 жыл бұрын
Glad it helped! I try to setup these vids so it's easy to understand for someone who has never done it before...I'm not an expert either! We are all learning together.
@JacobKinsley
@JacobKinsley Жыл бұрын
I've spent the last few months on and off working on a project with a pressure sensor and I could not get it to work for the life of me (I could solve it instantly by paying twice the price of a component to have it shipped from america). This video has basically saved me because it's exactly what I want to achieve and can be found much easier.
@belevenisonderwijs
@belevenisonderwijs Жыл бұрын
I'm using this sensor, but be aware! Sensorvalue is also changing with temperature!
@davidridley247
@davidridley247 Жыл бұрын
Great video & description. Was planning to use this type of sensor & a traditional gauge setup on my Jag but this approach is far more sophisticated. I also want to monitor battery voltage so your last comments are a big plus! FYI Oil pressure & battery voltage are big issues on modern Jags but JLR don't install these driver aids these days. Many folk on the Jag forums will be interested in your project, good luck & I'll watch out for updates. Many thanks Dave in the Wirral, UK . Subscribed!
@OvensGarage
@OvensGarage Жыл бұрын
Thanks for the comment appreciate it!
@brandonflores7419
@brandonflores7419 2 жыл бұрын
amazing vidoe man! I'm setting up an oil pressure guage in my car using an I2c display and this helped out a ton. I love that you go line by line explaining what each line of code does and you explain the math to back it up!
@OvensGarage
@OvensGarage 2 жыл бұрын
Glad it helped!
@claudiorosa3902
@claudiorosa3902 6 ай бұрын
Clear and straight to the point. Congratulations!
@Alex-tt9jx
@Alex-tt9jx 3 жыл бұрын
This a great example, just a side not to your code, you could use the map() function to convert those voltage/input ranges as well. Keep up the great videos
@OvensGarage
@OvensGarage 3 жыл бұрын
Thanks for watching and thanks for the tip!
@lesterwhitt5709
@lesterwhitt5709 4 жыл бұрын
Hi and thanks for this video, it helped get me on the right track for adding a fuel pressure sensor to my truck. I'm new to Arduino and writing code but I made a few changes in the calculations that seemed a bit easier (for me anyways). Here it is in case it'll help you or anyone else along the way when you start adding different sensors. I'm also going to add a pyrometer and a boost gauge and run them all (or try to anyway) off one arduino. Things I changed; -My display was different so I switched to LiquidCrystal -I didn't use the pressurezero, pressuremax, or max psi -I determined the linear rate of 5.45 for a 150psi sensor but since Arduino doesn't use decimals, I made it 545 and then divided by 100 later -In the pressure value, I subtracted 102 since .5v = 0 psi and 102 is the analog equivalent of .5v #include const int pressureInput = A1; //select the analog input pin for the pressure transducer //const int pressureZero = 102.4; //analog reading of pressure transducer at 0psi //const int pressureMax = 921.6; //analog reading of pressure transducer at 100psi //const int pressuretransducermaxPSI = 150; //psi value of transducer being used const int baudRate = 9600; //constant integer to set the baud rate for serial monitor const int sensorreadDelay = 250; //constant integer to set the sensor read delay in milliseconds const int linear = 545; float pressureValue = 3; //variable to store the value coming from the pressure transducer LiquidCrystal lcd(12,11,5,4,3,2); //sets the LCD I2C communication address; format(address, columns, rows) void setup() //setup routine, runs once when system turned on or reset { Serial.begin(baudRate); //initializes serial communication at set baud rate bits per second lcd.begin(16,2); //initializes the LCD screen } void loop() //loop routine runs over and over again forever { pressureValue = analogRead(pressureInput); //reads value from input pin and assigns to variable pressureValue = (((pressureValue-102)/linear)*100); //This seemed simpler to for me Serial.print(pressureValue, 1); //prints value from previous line to serial Serial.println("psi"); //prints label to serial lcd.setCursor(0,0); //sets cursor to column 0, row 0 lcd.print("Pressure:"); //prints label lcd.print(pressureValue, 0); //prints pressure value to lcd screen, 0 digit on float so that it would all fit on the screen lcd.print(" psi"); //prints label after value lcd.print(" "); //to clear the display after large values or negatives delay(sensorreadDelay); //delay in milliseconds between read values }
@shadowpit19
@shadowpit19 2 жыл бұрын
hello friend for a 200 psi sensor that needs to be configured
@youpattube1
@youpattube1 2 жыл бұрын
Thanks for this instructional video. I thought it was well done and well reasoned. I pasted your code into my large sketch, made a minor change, eliminated the LCD, and it ran fine.
@adammuammar4459
@adammuammar4459 Жыл бұрын
can you teach me for my final year project. i really need your coding without LCD, hope you can help me
@jerenahw
@jerenahw Жыл бұрын
6:30; Thanks for the explainer of where the 0.5vdc came from!
@OvensGarage
@OvensGarage Жыл бұрын
Cheers, thanks for watching!
@alexkohvaks4647
@alexkohvaks4647 3 жыл бұрын
You my friend are a saint. Been looking all over for this.
@OvensGarage
@OvensGarage 3 жыл бұрын
Cheers
@Davidlahall
@Davidlahall Жыл бұрын
where have you disappeared to ...Yo are by miles the best at teaching how to use not just Arduino but all these sensors.. I hated to use Arduino until I saw your videos
@LucasPereiradaSilva
@LucasPereiradaSilva 4 жыл бұрын
3:51 1.5 psi is 77.5mmHg, so your measurement is probably right. It is normal that the "vacuum" is a much larger number because you only have to remove the air. There's a lot of atmospheric pressure outside to push against, so you can "suck" a lot harder than "blow". Nice presentation, btw!
@alifomar3092
@alifomar3092 2 жыл бұрын
Thank you, your video helped me a lot during my final year project
@OvensGarage
@OvensGarage 2 жыл бұрын
Glad I could help!
@jhyland87
@jhyland87 Жыл бұрын
Im working on a N2 generator, and I need to be able to monitor the pressure and flow rate, so this is going to help a lot. Thanks!
@OvensGarage
@OvensGarage Жыл бұрын
Glad it helped. Cheers
@62f100
@62f100 2 жыл бұрын
Thanks for the video!! worked great. now trying to figure out how to do multiple.
@scrap-iron9561
@scrap-iron9561 4 жыл бұрын
Fantastic man! I'm doing an air ride set up and wanted to flush my own screen in the dash. This is a great tutorial
@OvensGarage
@OvensGarage 4 жыл бұрын
That's great, this should work perfect for your application. Glad I could help!
@lobotomyy
@lobotomyy 2 жыл бұрын
this guy deserves a medal
@JavierGonzalez-fe3lh
@JavierGonzalez-fe3lh Жыл бұрын
Thank you for this project! I'm starting at arduino language and it was easy for me to follow your explanation. I'm trying to make a water level indicator for my VW camper bus using this pressure level. I need to transform the analog reading values into percentage and liters so i can know how much water do i have left, i think with this code i can make it happen. :D
@petemoore9904
@petemoore9904 3 жыл бұрын
Top video and description, it's pleasure to subscribe. Look forward to more like this.
@OvensGarage
@OvensGarage 3 жыл бұрын
Thank you very much!
@fgiosa1
@fgiosa1 3 жыл бұрын
I find the video very instructive, especially the time you take to explain each instruction in detail. My question is if you have done tests with negative pressure, that is, with depression, I would like to build a vacuum gauge and it seems to me that it could work.
@OvensGarage
@OvensGarage 3 жыл бұрын
I have not done the test with an applied vacuum. I'm unsure if the sensors are designed to work that way. I would check the sensor manufacturer specs.
@JonHeaven
@JonHeaven 4 жыл бұрын
Awesome brother, really cool project. Been wanting to delve into the Arudino world for quite some time. Thanks for the inspiration!
@OvensGarage
@OvensGarage 4 жыл бұрын
Thanks, I'll be trying to make these electronic videos easy to understand and follow so anyone can replicate them if they want. Cheers.
@JonHeaven
@JonHeaven 4 жыл бұрын
@@OvensGarage Looking forward to the next vids. I take to this fairly quickly as I used to be a programmer for a living. All the best!
@OvensGarage
@OvensGarage 4 жыл бұрын
@@JonHeaven Maybe you will be able to teach me more than I know then haha, this is just a hobby for me so I am learning as a I go.
@GustavoPerez-yg7zr
@GustavoPerez-yg7zr Жыл бұрын
Hola. Muy buena la programación. La probé y excelente. Lo único que agregaría es que para transductores de 12 Mpa, como mi caso, el delay a usar debe ser de 1000 sino se torna bastante impreciso. Muchas gracias.
@maxwellschaphorst8050
@maxwellschaphorst8050 2 жыл бұрын
Thanks man great video. I have a home heated by oil tank and I'm thinking it'd be a good first project to put an analog sensor to measure tank level. So it can alert me when the tank gets low, and I can check it remotely. As of now I have to walk over and it's in the back of my garage. But also thought if I log the data I can measure oil usage over periods of time. I have a Rasp PI 4 & Arduino UNO, going to buy that sensor you used and probably use the Pi so I can take the data and move it via Wifi somewhere I can access it remotely.
@acestu
@acestu 2 жыл бұрын
If you adjust that blue potentiometer on your lcd piggy back you will be able to see the writing on the screen as it alters the contrast
@tomevernham1693
@tomevernham1693 2 жыл бұрын
Excellent commentary and tutorial. Thank you.
@OvensGarage
@OvensGarage 2 жыл бұрын
Thanks
@CNCPRINTBLOGSPOT
@CNCPRINTBLOGSPOT 3 жыл бұрын
nice but for industrial applications, we use often 4-20mA sensors not 0,5-5V Sensors :-) Nice Video thx 👌❤
@garywildgoose767
@garywildgoose767 Жыл бұрын
That's only because of your proximity to the PLC, This doesn't require a PLC so there would be no voltage drop. This is nice on an ESP32 where the value can be wirelessly transmitted to a PLC or HMI from a remote location, especially if you have an ESP32 with LoRa, then you could transmit multiple miles on just 5 volts wouldn't be practical with 4-20mA
@RakeshRoshan295
@RakeshRoshan295 7 ай бұрын
Hi bro i have one question......if you have to your own mcu board then what will be interfacing circuit will be of analog pin.... de we need a resistor divider ckt with skotky diode with that?
@pokpikchan
@pokpikchan Жыл бұрын
cool project. Going to make a smart water tank for my home.
@OvensGarage
@OvensGarage Жыл бұрын
Good luck!
@cristiancruciani3603
@cristiancruciani3603 3 жыл бұрын
excelente gracias!!! from Mendoza Argentina!
@danljohnston
@danljohnston 4 жыл бұрын
Thanks for sharing, I'll be interested in this project as I'm doing a similar one.
@OvensGarage
@OvensGarage 4 жыл бұрын
Good luck!
@smallears1234
@smallears1234 2 жыл бұрын
Dude this is awesome! Great video
@OvensGarage
@OvensGarage 2 жыл бұрын
No problem glad it helped.
@texmjm5018
@texmjm5018 4 жыл бұрын
Heya! Great video. Thanks! I am adapting your model for a pressure / depth sensor on my underwater ROV.
@OvensGarage
@OvensGarage 3 жыл бұрын
Perfect!
@dayarao1555
@dayarao1555 6 ай бұрын
Thank you. Looking for more project..
@aidenkirch
@aidenkirch 2 жыл бұрын
Everything works for me except the pressure is no printing to the LCD screen, though it is reading it in the serial monitor. i changed the address as well, but I am just getting white squares, had to change columns an rows too.
@OvensGarage
@OvensGarage 2 жыл бұрын
Probably the contrast of your screen
@paulelliott2459
@paulelliott2459 8 ай бұрын
Hi awsome video ... Do you think this sensor would be sensitive enough to detect air flow in ducting .. We have a fan that extracts from an industrial laser ... I need to work a way to detect which way the air flow is going left or right from a bypass system .. Was hoping if this is sensitive enough I could fit one on each side .. And control indicator light to show the air flow direction .. Hope that makes sense ! .thank you Paul
@hfmsite
@hfmsite Ай бұрын
Thanks you very much, it help me a lot
@gmpinto2
@gmpinto2 3 ай бұрын
Great Video!
@HandyKindaGuyUK
@HandyKindaGuyUK 2 жыл бұрын
I wonder if you could do this with multiple transducer sensors. I may use this for monitoring my well water, thankyou
@alessandromaffei8816
@alessandromaffei8816 3 жыл бұрын
This is really a thorough video. Thank you very much. I would like to use this to control air pressure coming from a compressor, but I don't konw where to find prorammable air compressors, do you have an idea of any commercial model that I could connect to the arduino?
@ranjisharamanath7984
@ranjisharamanath7984 Жыл бұрын
hey, I too want to do the same. Got stuck with the same question u asked here. whether you got it..? or u have any alternative..?
@rafiulhashar2096
@rafiulhashar2096 2 жыл бұрын
Thank you so much, it worked!
@alvarocondarco6252
@alvarocondarco6252 Жыл бұрын
Good afternoon, excellent video, I have problems with the library that type of library I use, the one I have of "LiquidCrystal_I2C" throws me an error in "lcd.begin"
@danhoppes9403
@danhoppes9403 2 жыл бұрын
Awesome video. I'm having one issue, when I use your equation and some portions of your code, for some reason my sensor readings flip to negative at 40PSI and as I increase the pressure, the negative starts dropping back to 0. Its a weird one I can't figure out.
@jovimocar
@jovimocar 2 жыл бұрын
The variables that are part of the equation are declared as INT while The result the code is expexting is float. This will cause the system to put a negative sign in about 32 psi... The solution is simple: declare all variables that are part of the pressure equation as float and also define them as float (include a '.0' after the integer part). This should solve your issue
@user-tf9ox6zz5w
@user-tf9ox6zz5w Жыл бұрын
Hello Mr if you can adding the temperature reading in LCD in same pressure sensor you can Thank you so much
@wisdommoshi1908
@wisdommoshi1908 3 жыл бұрын
great work brother we all appreciate your work. but can you help me with connecting this to Blynk please
@OvensGarage
@OvensGarage 3 жыл бұрын
Thanks for watching!
@salsabila4632
@salsabila4632 Жыл бұрын
Hi, great video! beginner here, i have a question tho.. my sensor is capable to measure up to 12 bar (174 psi), yours is 100 psi how did you get the values 0-1023? how do i get the values of my sensor?
@yuvvrajkperson
@yuvvrajkperson 9 ай бұрын
The 0-1024 is the function of the analog.read() command. It takes the input in voltage and converts it to that range. It is not sensor specific
@deerbutt05
@deerbutt05 Жыл бұрын
Hello, I am using a 300 psi pressure transducer. I used your code I am just confused what number to use for the analog signal. You the the number 1024 what will be the number I use. Or better question how do I determine that number?
@RixtronixLAB
@RixtronixLAB 11 күн бұрын
Nice video, keep it up, thanks :)
@itzelvanessaalcantar2664
@itzelvanessaalcantar2664 Жыл бұрын
Well explained, thank you! I am currently working with a 5000PSI pressure transducer (Output voltage 0.5V-4.5V) and the Arduino nano. Can I use this code changing the constants? and, what do I have to change or add to the circuit?
@rodrigodiasmartins3884
@rodrigodiasmartins3884 11 ай бұрын
Good Nigth friend, video show. I would like to know which source do you use in the Arduino IDE?
@PaulWellner
@PaulWellner 2 жыл бұрын
Great Video!! Thank you. I have a project where I want to send 5V until a given pressure is reached. The pressure would start out high then when the lower pressure is reached shut off the 5V output. Being new to programming would that be difficult to add to your code?
@stevebahr7782
@stevebahr7782 3 ай бұрын
If i want to turn a relay on or off at a certain pressure, would i add that code under yours?
@kuh5220
@kuh5220 2 жыл бұрын
Great video. Which lines would I change using a 200psi sensor? Would I only change the maximum?
@almansour7829
@almansour7829 2 жыл бұрын
Hi thank you for this great video Can you display the pressure value on a phone rather than than an LCD screen? What changes need to be done on the code?
@ManuelAndresFernandezRey
@ManuelAndresFernandezRey 4 жыл бұрын
excellent tutorial, thank you very much. Good good really
@OvensGarage
@OvensGarage 4 жыл бұрын
Glad it helped! Thanks for watching.
@maropengmphaho3527
@maropengmphaho3527 5 ай бұрын
Hi Ovens, do you reckon I can use this to measure the water pressure in a borehole?
@marekhabel2493
@marekhabel2493 3 жыл бұрын
Great video, thanks. Anything on absolute pressure sensor? I’m interested in reading vacuum.
@raysstuffz
@raysstuffz 2 жыл бұрын
Great stuff, thanks a lot. Subscribed:-)
@OvensGarage
@OvensGarage 2 жыл бұрын
Thanks!
@kikiandrean8522
@kikiandrean8522 3 жыл бұрын
Very clear sir, thanks, I appreciated it..
@OvensGarage
@OvensGarage 3 жыл бұрын
Glad it helped
@AE-us7bw
@AE-us7bw Жыл бұрын
Hello, thank you for your video. I've got a small question. If my sensor works with a 0-10V signal, can I use a voltage divider for the same code? thank you
@OvensGarage
@OvensGarage Жыл бұрын
I believe so yes
@MrDhilishkumar
@MrDhilishkumar 2 жыл бұрын
Please make video for compressor work with Arduino . Please explain with wiring , Arduino code explain and product link.
@asrajo5728
@asrajo5728 Жыл бұрын
nice tutorials. can this sensor be used to read negative pressure? thanks
@OvensGarage
@OvensGarage Жыл бұрын
I don't think you can do that with this sensor.
@asrajo5728
@asrajo5728 Жыл бұрын
@@OvensGarage thanks for the information
@suleymancakr5026
@suleymancakr5026 Жыл бұрын
I have a 200 PSI sensor wich value do i need to change.
@ho-bros186
@ho-bros186 3 жыл бұрын
I have 4 of these exact transducers. When reading the unaltered analog value on the serial monitor, I get 87 for one of them and 102 for the others. Does this just indicate that that specific transducer is running at less than 0.5 V? When I calculate the low voltage from those numbers I get 0.42V which does seem reasonable. Am I missing something or do I just need to calibrate each program to the specific transducer it's using if it's not 102.6?
@yurikocraze1019
@yurikocraze1019 Жыл бұрын
Is this applicable to pressurized water tank to replace the conventional water pressure switch?
@049-rizqipratama7
@049-rizqipratama7 Жыл бұрын
Thank you sir
@OvensGarage
@OvensGarage Жыл бұрын
Glad it helped!
@SunilSharma-ii4dn
@SunilSharma-ii4dn 10 ай бұрын
What should do if unit in bar.
@abanobashraf4193
@abanobashraf4193 2 жыл бұрын
If the sensor supply voltage is 12v not 5v and its output voltage is 0-5 volt ..will this affect the reading on the ADC pin?
@neilgaveria5492
@neilgaveria5492 5 ай бұрын
Hi bro is there a way to filter the noise at STP
@oswald42069
@oswald42069 2 жыл бұрын
i skipped the lcd and read the value in the serial monitor, but with the exact same code my sensor (100psi) shows -2.2psi. does that mean it is broken?
@tittan1500
@tittan1500 8 ай бұрын
Good work man thanks
@muhammadhaziqmohdnoor6868
@muhammadhaziqmohdnoor6868 Жыл бұрын
Hi sir can the pressure transducer measure car tire pressure
@OvensGarage
@OvensGarage Жыл бұрын
I don't see why not
@mrjameson3581
@mrjameson3581 3 жыл бұрын
Thanks for sharing, is there any similar code for use with oled display? please excuse my ignore.. new one to this kind of programming..
@OvensGarage
@OvensGarage 3 жыл бұрын
You can likely find example code with some OLED libraries in the IDE software.
@adammuammar4459
@adammuammar4459 Жыл бұрын
can you teach me for my final year project. i really need your coding M3200 pressure transducer without LCD, hope you can help me
@Muhindo_Altium
@Muhindo_Altium 10 ай бұрын
Great video. Thank you sir!
@user-ud1rl8ln1k
@user-ud1rl8ln1k 2 жыл бұрын
Mine is 60psi. I change pressuretranducermaxPSI to 60 but at my serial monitor the prints without pressure are from -0.5 psi to 0.7 psi. Something going wrong with the sensor or some thing else?
@mesquitamk1681
@mesquitamk1681 2 жыл бұрын
a question can measure liquid like kerosene ...and for a regular injector nozzle
@OvensGarage
@OvensGarage 2 жыл бұрын
Yes sensor can measure liquid pressure.
@necipsahin8377
@necipsahin8377 2 жыл бұрын
So how do you think to measure negatif pressure if you wanna use this transducer in vacum chamber?
@alexsiegel5529
@alexsiegel5529 2 жыл бұрын
would this work for a vacuum sensor? any way you can help with a sensitive diy vacuum sensor that works down to the 1 mTorr level? they cost hundreds of dollars currently
@kelennaanyanwu5372
@kelennaanyanwu5372 3 жыл бұрын
Great video, much appreciated
@OvensGarage
@OvensGarage 3 жыл бұрын
Glad it was helpful!
@phamvu5066
@phamvu5066 Жыл бұрын
Hi Ovens, How many pressure sensors can we can connect with this Adruino board ? in case I want to install 6 sensors on 1 board, How can I extend input port ?
@favornehemie4423
@favornehemie4423 4 жыл бұрын
I just watch your video concerning industrial pressure and Ihave some questions. firstly, please what is the identification of a sensor you use? if I want to command it or use exactly the same. secondly, which is the type of the pressure sensor you use? differential? absolute? vacuum? thirdly, can i use it in the reactor of a biodigester? thanks in advance! i look forward to hearing from you soon!
@OvensGarage
@OvensGarage 4 жыл бұрын
The pressure transducer sensor and all of the items I use are in the video description below, including the example code that I created and used. Absolute. You can use it wherever you deem fit. The sensor is okay to use with fluid, fuel, or air pressure. Good luck with your project.
@favornehemie4423
@favornehemie4423 4 жыл бұрын
​@@OvensGarage thanks to answer me. in the video I haven't saw the '''identity''' of the sensor. because I whould like to use the same in my project. so, I want the identity please which will allow me to search its datasheet, please
@ricardovazquez2827
@ricardovazquez2827 4 жыл бұрын
Hi, I got a question, I want to use it for measureing into a water container (1000 lt), the sensor could be in touch with the water,? my idea is at the bottom of the container in pipe line put it, thanks in advanced!!!!
@sto2779
@sto2779 3 жыл бұрын
This code worked, thanks!.
@hoskoned
@hoskoned 3 жыл бұрын
Getting 2 white bars on lcd, how did you do it?
@OvensGarage
@OvensGarage 3 жыл бұрын
You're welcome!
@hoskoned
@hoskoned 3 жыл бұрын
Resolved by replacing the lcd library and address
@ChristianJoyAzucenas
@ChristianJoyAzucenas 3 жыл бұрын
hi, if i want to switch on a relay belows 58psi and switch off if it reaches 58?
@josephdaquila2479
@josephdaquila2479 5 ай бұрын
Did you get it?
@geamusicaofficial
@geamusicaofficial Жыл бұрын
Bolehkah saya meminta scema rangkaian tersebut pak
@SheriCoco
@SheriCoco 2 жыл бұрын
I tried this and I keep getting -12psi and my LCD just lights up no values. Any help?
@denilsonmpinheiro3415
@denilsonmpinheiro3415 9 ай бұрын
Obrigado pelo video! Me ajudou muito!
@p10rambo
@p10rambo Жыл бұрын
is there any way to connect it directly to nRF24L01?
@danielelemia3668
@danielelemia3668 3 жыл бұрын
Hi im very new to coding and arduino I was wondering what Lcd library you used.... i dont have a display on my lcd screen
@kumudayanayanajith6427
@kumudayanayanajith6427 4 жыл бұрын
Amazing work mate! Would you be kind enough to share the library file with us. I could not find the correct library. Thank you
@perrymattes4285
@perrymattes4285 3 жыл бұрын
Check the address for the display I had the right library but wrong address for my display.
@b-22putijudevincentf.17
@b-22putijudevincentf.17 5 ай бұрын
how did you get 0-1023? Is that from a sheet? Or a standard for every pressure transducer?
@charleslyell3748
@charleslyell3748 4 ай бұрын
This is Arduino's analogRead function. 0V is read as 0 and 5V is read as 1023. ALL other values are proportional to the analog input value
@MegaMark1234
@MegaMark1234 3 жыл бұрын
This is an amazing video! For my school i need to use a mpx 2050 gp pressure transducer to make a bloodpressure monitor. I need to convert the output voltage to a signal that gives a pressure from 0 to 200 mmhg. Could you help me with the arduino code for this task? I couldt thank you enough!
@mesquitamk1681
@mesquitamk1681 2 жыл бұрын
uma pergunta pode medir liquido como querosene ...e para uma maquina de regular bico injetor
@rcnacura
@rcnacura 3 жыл бұрын
I have a 300 psi sensor which has the same 0.5v is zero - 300psi 5v. When I put in the code, I changed the max psi to 300 but when I run the serial monitor and have it hooked it, it shows on average -1.5psi. Is this correct or should it say 0.0psi?
@acestu
@acestu 2 жыл бұрын
Hi, can you tell me which Liquidcrystal_i2c library you are using please as I am getting errors on compiling Thank you
@evandrodesouza3087
@evandrodesouza3087 Жыл бұрын
Excelente, good job!
@OvensGarage
@OvensGarage Жыл бұрын
Thanks a lot!
@cellularmitosis2
@cellularmitosis2 3 жыл бұрын
Great video! That camera shake is making me sea sick though
@OvensGarage
@OvensGarage 3 жыл бұрын
Thanks!
@abhigyar7
@abhigyar7 4 жыл бұрын
Very detailed! Subscribing for more content👍🏻
@OvensGarage
@OvensGarage 4 жыл бұрын
Thanks for the sub!
HVAC Pressure Transducer Operation and Testing!
7:07
AC Service Tech LLC
Рет қаралды 71 М.
나랑 아빠가 아이스크림 먹을 때
00:15
진영민yeongmin
Рет қаралды 14 МЛН
小丑和白天使的比试。#天使 #小丑 #超人不会飞
00:51
超人不会飞
Рет қаралды 34 МЛН
4-20mA sensor explained with a simple Arduino example!
11:44
Werewolf Wu
Рет қаралды 37 М.
What is a Pressure Sensor?
8:35
RealPars
Рет қаралды 341 М.
You can learn Arduino in 15 minutes.
16:34
Afrotechmods
Рет қаралды 10 МЛН
How to Interface Industrial Sensors with Arduino Nano
6:27
OnosTech
Рет қаралды 52 М.
ARDUINO NANO with Oil Pressure and Temp Sensor + OLED display
7:07
Mr. Bearded Mechanic
Рет қаралды 9 М.
Experiment: Arduino Pressure Sensor inside a DIY Inflatable
9:17
Becky Wonders (Becky Marshall Design)
Рет қаралды 86 М.
Voltage Sensor - Arduino
12:47
Ovens Garage
Рет қаралды 7 М.
나랑 아빠가 아이스크림 먹을 때
00:15
진영민yeongmin
Рет қаралды 14 МЛН