GY-63_MS5611/libraries/MCP_ADC/README.md

155 lines
5.7 KiB
Markdown
Raw Normal View History

2021-01-29 06:31:58 -05:00
[![Arduino CI](https://github.com/RobTillaart/MCP_ADC/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci)
2021-11-08 07:14:13 -05:00
[![Arduino-lint](https://github.com/RobTillaart/MCP_ADC/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/MCP_ADC/actions/workflows/arduino-lint.yml)
[![JSON check](https://github.com/RobTillaart/MCP_ADC/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/MCP_ADC/actions/workflows/jsoncheck.yml)
2021-01-29 06:31:58 -05:00
[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/MCP_ADC/blob/master/LICENSE)
[![GitHub release](https://img.shields.io/github/release/RobTillaart/MCP_ADC.svg?maxAge=3600)](https://github.com/RobTillaart/MCP_ADC/releases)
2021-11-08 07:14:13 -05:00
2021-01-29 06:31:58 -05:00
# MCP_ADC
2021-11-08 07:14:13 -05:00
Arduino library for MCP3002 MCP3004 MCP3008 MCP3202 MCP3204 MCP3208 and compatibles.
2021-01-29 06:31:58 -05:00
## Description
This library reads the ADC ports of the MCP ADC convertors.
2021-07-31 11:43:47 -04:00
The chips are communicates with SPI and support both hardware SPI or optional software SPI.
| type | bits | channels | notes |
|:--------|:----:|:--------:|:------|
| MCP3002 | 10 | 2 | |
| MCP3004 | 10 | 4 | |
| MCP3008 | 10 | 8 | |
| MCP3202 | 12 | 2 | |
| MCP3204 | 12 | 4 | |
| MCP3208 | 12 | 8 | |
2021-01-29 06:31:58 -05:00
Current version allows manual override of the hardware SPI clock as the speed is not
optimized per ADC type.
2021-11-08 07:14:13 -05:00
The MCP ADC allow single mode 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.
2021-01-29 06:31:58 -05:00
Build into the library is a delta mode which is a software enhanced differential mode.
This delta mode can return negative values too.
## Interface
If the pins are not set in the constructor, the class will automatically
2021-11-08 07:14:13 -05:00
use the hardware SPI, otherwise it will use a software SPI.
- **MCP3002(uint8_t dataIn, uint8_t dataOut, uint8_t clock)** constructor 10 bit ADC 2 channel.
- **MCP3004(uint8_t dataIn, uint8_t dataOut, uint8_t clock)** constructor 10 bit ADC 4 channel.
- **MCP3008(uint8_t dataIn, uint8_t dataOut, uint8_t clock)** constructor 10 bit ADC 8 channel.
- **MCP3202(uint8_t dataIn, uint8_t dataOut, uint8_t clock)** constructor 12 bit ADC 2 channel.
- **MCP3204(uint8_t dataIn, uint8_t dataOut, uint8_t clock)** constructor 12 bit ADC 4 channel.
- **MCP3208(uint8_t dataIn, uint8_t dataOut, uint8_t clock)** constructor 12 bit ADC 8 channel.
- **void begin(uint8_t select)** set select pin.
- **uint8_t channels()** returns the number of channels.
- **int16_t maxValue()** returns maxReading of adc, e.g. 1023.
2021-01-29 06:31:58 -05:00
This makes it easy to calculate relative measurements.
2021-11-08 07:14:13 -05:00
- **int16_t analogRead(uint8_t channel)** reads the value of a single channel.
- **int16_t differentialRead(uint8_t channel)** reads differential between two channels.
Check datasheet for details.
Note if the **IN+** is equal or below **IN-** this function will return 0.
- **int16_t deltaRead(uint8_t channel)** reads differential like above however it
will return a negative value if **IN+** is below **IN-**.
- **void setSPIspeed(uint32_t speed)** sets SPI clock in **Hz**, please read datasheet
2021-01-29 06:31:58 -05:00
of the ADC first to get optimal speed.
2021-11-08 07:14:13 -05:00
- **uint32_t getSPIspeed()** gets current speed in **Hz**.
2021-01-29 06:31:58 -05:00
2021-11-08 07:14:13 -05:00
Differential channel table:
2021-01-29 06:31:58 -05:00
2021-11-08 07:14:13 -05:00
| Channel | diff IN+ | diff IN- | MCP |
|:-------:|:--------:|:--------:|---------------:|
2021-07-31 11:43:47 -04:00
| 0 | 0 | 1 | 3x02/3x04/3x08 |
| 1 | 1 | 0 | 3x02/3x04/3x08 |
2021-11-08 07:14:13 -05:00
| 2 | 2 | 3 | 3x04/3x08 |
| 3 | 3 | 2 | 3x04/3x08 |
| 4 | 4 | 5 | 3x08 |
| 5 | 5 | 4 | 3x08 |
| 6 | 6 | 7 | 3x08 |
| 7 | 7 | 6 | 3x08 |
2021-07-31 11:43:47 -04:00
### debug
- **bool usesHWSPI()** returns true if HW SPI is used.
### ESP32 specific
- **void selectHSPI()** in case hardware SPI, the ESP32 has two options HSPI and VSPI.
- **void selectVSPI()** see above.
- **bool usesHSPI()** returns true if HSPI is used.
- **bool usesVSPI()** returns true if VSPI is used.
2021-08-01 09:51:21 -04:00
The **selectVSPI()** or the **selectHSPI()** needs to be called
BEFORE the **begin()** function.
#### experimental
2021-11-08 07:14:13 -05:00
- **void setGPIOpins(uint8_t clk, uint8_t miso, uint8_t mosi, uint8_t select)**
overrule GPIO pins of ESP32 for hardware SPI. needs to be called AFTER the **begin()** function.
2021-08-01 09:51:21 -04:00
```cpp
void setup()
{
MCP.selectVSPI();
MCP.begin(15);
2021-11-08 07:14:13 -05:00
MCP.setGPIOpins(CLK, MISO, MOSI, SELECT); // SELECT should match the parameter of begin()
2021-08-01 09:51:21 -04:00
}
```
2021-01-29 06:31:58 -05:00
2021-11-08 07:14:13 -05:00
This implementation might change in the future, e.g. leave out the select pin as it is
already known in the code.
2021-01-29 06:31:58 -05:00
2021-04-07 07:31:22 -04:00
## About SPI Speed
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.7V.
In a test with an ESP32 (3.3V) the library showed stable results
2021-12-21 09:31:31 -05:00
at 4 MHz and at 6 MHz it was almost good.
2021-04-07 07:31:22 -04:00
The max value read at 6 MHz was 1020 instead of 1023 (MCP3008)
which indicates that the last 2 bits got lost due to signal deformation.
2021-07-31 11:43:47 -04:00
| Board | Voltage | safe | max |
|:-----:|:-------:|:------:|:-----:|
2021-12-21 09:31:31 -05:00
| ESP32 | 2.7V | 1 MHz | 4 MHz |
| UNO | 5.0V | 2 MHz | 4 MHz |
2021-04-07 07:31:22 -04:00
For hardware SPI the ESP32 uses the VSPI pins. (see ESP examples).
2021-12-21 09:31:31 -05:00
## Future
2021-01-29 06:31:58 -05:00
2021-12-21 09:31:31 -05:00
- documentation
2021-01-29 06:31:58 -05:00
- testing, a lot ...
2021-04-07 07:31:22 -04:00
- analogRead (mask, int array\[8\] ) read ports (set in mask) in an array in one call.
2021-11-08 07:14:13 -05:00
would this save time?
2021-04-07 07:31:22 -04:00
2021-01-29 06:31:58 -05:00
2021-12-21 09:31:31 -05:00
#### wont
- get / setF(float A, float B) => float readF(channel) output = A\*value + B;
it actually does float mapping. As it implies the same mapping for all it might
not be that useful => multmap
2021-01-29 06:31:58 -05:00
## Operations
See examples.