Hello, I am trying to interface a pressure transducer with 4 wires. two inputs (10V DC) and two outputs (45mV max). I connected -ve output to ground of arduino and +ve output to A0 (analog pin). When I am trying to read the analog input directly, it shows 1023 all the time. I am not using external referencing, so I assume 5V internal referencing, so I expecting to read maximum of 0.045/5 x 1024 = 9 or 10, but why is it giving me 1023 all the time?
I measured the outputs using multimeter, it does give the correct voltage DC output, from 0 to 0.045V. What is wrong?
Appreciate if you could point out what is wrong. Or should I use a Op-amp?
Post a link to the data sheet for the transducer, a schematic showing how you have connected everything, and your test code. It should be obvious to you that you need to post these things. Without them, how can anyone help you?
hello I made a circuit similar to this that tries to read mv. it works perfectly.
You can use the pot for feedback. Even lm741c has been upgraded, you can try it on lm358.
AD820 rail-to-rail difference from input to output.
i will do it with encoder
Definitely use ads1115, I've seen the difference. I am trying to prepare a project.
I'm good at electronics.
I'm late to the software, but I need to move on.
When I learn how to use my wings as a rookie, I can fly forever.
I need a lot of help with software, I'm new, we're trying to do something. We understand the plight of those in distress.
I wanted to make a contribution. my project link can be your contribution
The pressure sensor is a Wheatstone bridge type, and is intended to be used with an instrumentation amplifier, like the INA121, not with a single ended ADC like on the Arduino.
The MPM280 is a piezo-resistive sensor, which is far more similar to a strain gauge than anything else. The "input" voltage is not critical, hence not specified, as the sensor itself is four resistors in a bridge configuration. You CANNOT read this sensor with a single-ended A/D like that in an Arduino. It can only be read using an A/D with a differential input, just like a strain gauge. And, to get decent resolution, it will need a high-gain, low-noise aimplifier stage to increase the signal level, followed by a highly linear, high-resolution A/D converter. It likely would work with a strain gauge amplifier like the HX711, though that might not provide an optimal result. Once the amplifier and A/D are connected and working, it will require calibration to determine the correct scaling of the output data, as the output range and resolution will depend almost entirely on the characteristics of the amplifier and A/D.
In short, the current approach WILL NOT WORK, and a complete re-think of the approach is in order. I don't know what the final application is here, but I suspect this is a rather poor choice of sensor. For most applications, there are much simpler sensors available that provide precisely calibrated direct voltage output that CAN be directly read by a simple single-ended A/D, or even a single digital signal using a One-Wire interface.