2022-01-10 12:51:36 +01:00
|
|
|
|
|
|
|
[![Arduino CI](https://github.com/RobTillaart/MCP23008/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci)
|
|
|
|
[![Arduino-lint](https://github.com/RobTillaart/MCP23008/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/MCP23008/actions/workflows/arduino-lint.yml)
|
|
|
|
[![JSON check](https://github.com/RobTillaart/MCP23008/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/MCP23008/actions/workflows/jsoncheck.yml)
|
2023-09-23 20:13:03 +02:00
|
|
|
[![GitHub issues](https://img.shields.io/github/issues/RobTillaart/MCP23008.svg)](https://github.com/RobTillaart/MCP23008/issues)
|
|
|
|
|
2022-01-10 12:51:36 +01:00
|
|
|
[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/MCP23008/blob/master/LICENSE)
|
|
|
|
[![GitHub release](https://img.shields.io/github/release/RobTillaart/MCP23008.svg?maxAge=3600)](https://github.com/RobTillaart/MCP23008/releases)
|
2023-09-23 20:13:03 +02:00
|
|
|
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/robtillaart/library/MCP23008.svg)](https://registry.platformio.org/libraries/robtillaart/MCP23008)
|
2022-01-10 12:51:36 +01:00
|
|
|
|
|
|
|
|
|
|
|
# MCP23008
|
|
|
|
|
|
|
|
Arduino library for MCP23008 8 channel I2C port expander.
|
|
|
|
|
|
|
|
|
|
|
|
## Description
|
|
|
|
|
|
|
|
This library gives easy control over the 8 pins of a (I2C) MCP23008 chip.
|
|
|
|
|
|
|
|
This IC is strongly related tot the MCP23017 I2C port expander - https://github.com/RobTillaart/MCP23017_RT
|
|
|
|
Programming Interface is kept the same as much as possible.
|
|
|
|
|
2022-09-28 10:44:58 +02:00
|
|
|
Since 0.1.1 the **digitalWrite(pin, value)** is optimized.
|
|
|
|
If a pin is not changed it will not be written again to save time.
|
|
|
|
|
2022-01-10 12:51:36 +01:00
|
|
|
|
2023-02-04 14:40:35 +01:00
|
|
|
#### Related
|
|
|
|
|
|
|
|
16 bit port expanders
|
|
|
|
|
|
|
|
- https://github.com/RobTillaart/MCP23017_RT
|
|
|
|
- https://github.com/RobTillaart/MCP23S17
|
|
|
|
- https://github.com/RobTillaart/PCF8575
|
|
|
|
|
|
|
|
|
|
|
|
8 bit port expanders
|
|
|
|
|
|
|
|
- https://github.com/RobTillaart/MCP23008
|
|
|
|
- https://github.com/RobTillaart/MCP23S08
|
|
|
|
- https://github.com/RobTillaart/PCF8574
|
|
|
|
|
|
|
|
|
2022-01-10 12:51:36 +01:00
|
|
|
## Interface
|
|
|
|
|
2023-02-04 14:40:35 +01:00
|
|
|
```cpp
|
|
|
|
#include "MCP23008.h"
|
|
|
|
```
|
|
|
|
|
2022-01-10 12:51:36 +01:00
|
|
|
### Constructor
|
|
|
|
|
|
|
|
- **MCP23008(uint8_t address, TwoWire \*wire = &Wire)** constructor, with default Wire interface.
|
|
|
|
Can be overruled with Wire0..WireN.
|
|
|
|
- **bool begin()** for UNO, returns true if successful.
|
|
|
|
- **bool begin(uint8_t sda, uint8_t scl)** for ESP32, returns true if successful.
|
|
|
|
- **bool isConnected()** returns true if connected, false otherwise.
|
|
|
|
|
|
|
|
|
|
|
|
### Single pin interface
|
|
|
|
|
2023-03-16 12:02:41 +01:00
|
|
|
- **bool pinMode(uint8_t pin, uint8_t mode)** pin = 0..7, mode = INPUT, OUTPUT.
|
|
|
|
0xFF is all pins are input, 0x1F are 5 inputs and 3 outputs.
|
|
|
|
Returns true if successful.
|
2022-09-28 10:44:58 +02:00
|
|
|
- **bool digitalWrite(uint8_t pin, uint8_t value)** pin = 0..7, value = LOW(0) HIGH (!0). Returns true if successful.
|
2022-01-10 12:51:36 +01:00
|
|
|
- **uint8_t digitalRead(uint8_t pin)** pin = 0..7, returns LOW or HIGH, might set the lastError();
|
2022-09-28 10:44:58 +02:00
|
|
|
- **bool setPolarity(uint8_t pin, bool reversed)** pin = 0..7, set reversed flag. Returns true if successful.
|
|
|
|
- **bool getPolarity(uint8_t pin, bool &reversed)** pin = 0..7, reads reversed flag. Returns true if successful.
|
|
|
|
- **bool setPullup(uint8_t pin, bool pullup)** pin = 0..7, set pull-up flag. Returns true if successful.
|
|
|
|
- **bool getPullup(uint8_t pin, bool &pullup)** pin = 0..7, reads pull-up flag. Returns true if successful.
|
2022-01-10 12:51:36 +01:00
|
|
|
|
|
|
|
|
|
|
|
### 8 pins interface
|
|
|
|
|
2022-09-28 10:44:58 +02:00
|
|
|
- **bool pinMode8(uint8_t value)** value = 0..255. Returns true if successful.
|
|
|
|
- **bool write8(uint8_t value)** value = 0..255. Returns true if successful.
|
2022-01-10 12:51:36 +01:00
|
|
|
- **uint8_t read8()** reads 8 pins into one byte.
|
2022-09-28 10:44:58 +02:00
|
|
|
- **bool setPolarity8(uint8_t mask)** sets polarity for 8 channels at once. Returns true if successful.
|
|
|
|
- **bool getPolarity8(uint8_t &mask)** reads polarity of 8 channels at once. Returns true if successful.
|
|
|
|
- **bool setPullup8(uint8_t mask)** sets pull-up for 8 channels at once. Returns true if successful.
|
|
|
|
- **bool getPullup8(uint8_t &mask)** reads pull-up for 8 channels at once. Returns true if successful.
|
2022-01-10 12:51:36 +01:00
|
|
|
|
|
|
|
|
|
|
|
### Error codes
|
|
|
|
|
2022-09-28 10:44:58 +02:00
|
|
|
If one of the above functions return false, there might be an error.
|
|
|
|
|
2022-01-10 12:51:36 +01:00
|
|
|
- **int lastError()** Above functions set an error flag that can be read with this function.
|
|
|
|
Reading it will reset the flag to **MCP23008_OK**.
|
|
|
|
|
2022-11-17 16:12:58 +01:00
|
|
|
| DESCRIPTION | VALUE |
|
|
|
|
|:-----------------------|:-------:|
|
|
|
|
| MCP23008_OK | 0x00 |
|
|
|
|
| MCP23008_PIN_ERROR | 0x81 |
|
|
|
|
| MCP23008_I2C_ERROR | 0x82 |
|
|
|
|
| MCP23008_VALUE_ERROR | 0x83 |
|
|
|
|
| MCP23008_PORT_ERROR | 0x84 |
|
2022-01-10 12:51:36 +01:00
|
|
|
|
|
|
|
|
|
|
|
## Operation
|
|
|
|
|
|
|
|
See examples.
|
|
|
|
|
|
|
|
|
|
|
|
## Future
|
|
|
|
|
2023-09-23 20:13:03 +02:00
|
|
|
#### Must
|
|
|
|
|
|
|
|
- improve documentation
|
|
|
|
|
|
|
|
#### Should
|
|
|
|
|
2022-01-10 12:51:36 +01:00
|
|
|
- keep in sync with MCP23017
|
|
|
|
|
2023-09-23 20:13:03 +02:00
|
|
|
|
|
|
|
#### Could
|
|
|
|
|
|
|
|
|
|
|
|
#### Wont
|
|
|
|
|
|
|
|
|
|
|
|
## Support
|
|
|
|
|
|
|
|
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,
|
|
|
|
|