Arduino library for MCP3001 MCP3002 MCP3004 MCP3008 MCP3201 MCP3202 MCP3204 MCP3208 and compatibles.
This library reads the ADC ports of the MCP ADC convertors. The chips are 1 to 8 channels, 10 or 12 bit and communicates with SPI. The library supports both hardware SPI and software SPI.
type | bits | channels | notes |
---|---|---|---|
MCP3001 | 10 | 1 | not tested yet. |
MCP3002 | 10 | 2 | |
MCP3004 | 10 | 4 | |
MCP3008 | 10 | 8 | |
MCP3201 | 12 | 1 | test, see #13 |
MCP3202 | 12 | 2 | |
MCP3204 | 12 | 4 | |
MCP3208 | 12 | 8 |
Current version allows manual override of the hardware SPI clock as the speed is not optimized per ADC type.
The MCP ADC's allow a single mode read which compares voltage of a single channel against GND. Furthermore they allow a differential mode which compares two channels IN+ and IN- to each other. If the IN+ is equal or below IN- the ADC will return 0.
Build into the library is a delta mode which is a software enhanced differential mode. This delta mode can return negative values too.
Version 0.5.0 introduced a breaking change to improve handling the SPI dependency. The user has to call SPI.begin() or equivalent before calling MCP.begin(). Optionally the user can provide parameters to the SPI.begin(...)
The version 0.4.0 has breaking changes in the interface. The rationale is that the programming environment of the Arduino ESP32 S3 board uses a remapping by means of the include file io_pin_remap.h. This file remaps the pins of several core Arduino functions. The remapping is implemented by #define macros and these implement "hard" text replacements without considering context. The effect is that methods from this class (and several others) which have the same name as those Arduino core functions will be remapped into something not working.
The following library functions have been renamed:
old name | new name | notes |
---|---|---|
analogRead() | read() | bugfix. |
analogReadMultiple() | readMultiple() | for consistency. |
The version 0.3.0 has breaking changes in the interface. The essence is removal of ESP32 specific code from the library. This makes it possible to support the ESP32-S3 and other processors in the future. Also it makes the library a bit simpler to maintain.
#include "MCP_ADC.h"
The derived classes have both constructors with same parameters.
Channel | diff IN+ | diff IN- | 3x02 | 3x04 | 3x08 |
---|---|---|---|---|---|
0 | 0 | 1 | V | V | V |
1 | 1 | 0 | V | V | V |
2 | 2 | 3 | V | V | |
3 | 3 | 2 | V | V | |
4 | 4 | 5 | V | ||
5 | 5 | 4 | V | ||
6 | 6 | 7 | V | ||
7 | 7 | 6 | V |
Note: the MCP3x01 ADC's are not included in this table, not investigated yet.
See https://github.com/RobTillaart/MCP_ADC/issues/3
The default SPI speed is reduced to 1 MHz. This is the value recommended in the datasheet for 2.7 Volt.
In a test with an ESP32 (3.3V) the library showed stable results at 4 MHz and at 6 MHz it was almost good.
The maximum value read at 6 MHz was 1020 instead of 1023 (MCP3008) which indicates that the last 2 bits got lost probably due to signal deformation.
Board | Voltage | safe | max |
---|---|---|---|
ESP32 | 2.7V | 1 MHz | 4 MHz |
UNO | 5.0V | 2 MHz | 4 MHz |
For hardware SPI the ESP32 uses the VSPI pins. (see ESP examples).
Since version 0.2.0 the readMultiple(channels[], numChannels, readings[]) is added to the interface. (See https://github.com/RobTillaart/MCP_ADC/pull/11 - Thanks to Alex Uta).
This function allows to read multiple channels in one call, which improves the performance of fetching new readings from the MCP_ADC device. The amount of gain differs per platform, so run your own performance test.
Besides fetching all ADC's in one call this function also allows to fetch the data from a specific channel multiple times, e.g. to be averaged. Other patterns are possible. These scenarios need still to be tested in practice.
Finally readMultiple() can be used to read only one channel too by using numChannels = 1.
Since 0.2.0 code for the MCP3201 has been added. The first tests are done (see #13) which showed that the 0.2.0 implementation was not correct. This has been fixed in the 0.2.1 version.
Note that not all function calls make sense for the MCP3201 and MCP3001 as these devices only have one channel. So use the library carefully with these ADC's.
Feedback is as always welcome.
If you appreciate my libraries, you can support the development and maintenance. Improve the quality of the libraries by providing issues and Pull Requests, or donate through PayPal or GitHub sponsors.
Thank you,