This may be a poor question but is there any issue with the Arduino pro mini reading the value from a 12-bit ADC IC, for example a ADS7866 or a MAX11644?
The Arduino pro mini uses the ATMEGA328P MCU.
My thought is that the Arduino pro mini will "chop off" 2 bits or is this incorrect thinking?
Both of those chips use a serial interface. The ADS7866 uses SPI (or a bit banged equivalent) and the MAX11544 uses I2C. That means that you will get the full resolution of the ADC.
Note that the two chips you linked to are completely different.
The first one is ratiometric and the second one is absolute with 4.096volt Aref.
So what type of sensor are you going to use. Ratiometric or absolute.
Leo..
Thank you for your comment, I learned something new - I'm leaning towards ratiometric. But I'm glad I ordered both to test out. In your opinion, would there be any reason not to go that route? I'm using the adc for a pressure sensor that will be powered from a wall outlet.
What kind of pressure sensor (output).
4-20mA sensors must be used with an absolute sensor, but others could require a ratiometric A/D.
A/D values (pressure) is not stable if the wrong A/D is used.
Maybe an external A/D is overkill. The sensor could have a 1% accuracy, in which case the Arduino A/D is good enough. Always post all the details if you want proper help.
Leo..