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

120 lines
4.6 KiB
Markdown
Raw Normal View History

2021-01-29 06:31:58 -05:00
[![Arduino CI](https://github.com/RobTillaart/MCP23017_RT/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci)
2021-09-17 04:30:51 -04:00
[![Arduino-lint](https://github.com/RobTillaart/MCP23017_RT/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/MCP23017_RT/actions/workflows/arduino-lint.yml)
[![JSON check](https://github.com/RobTillaart/MCP23017_RT/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/MCP23017_RT/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/MCP23017_RT/blob/master/LICENSE)
[![GitHub release](https://img.shields.io/github/release/RobTillaart/MCP23017_RT.svg?maxAge=3600)](https://github.com/RobTillaart/MCP23017_RT/releases)
2021-12-21 11:12:20 -05:00
2021-01-29 06:31:58 -05:00
# MCP23017_RT
2021-09-17 04:30:51 -04:00
Arduino library for MCP23017 16 channel I2C port expander.
2021-01-29 06:31:58 -05:00
## Description
2022-01-09 14:53:12 -05:00
This library gives easy control over the 16 pins of a (I2C) MCP23017 chip.
This IC is strongly related tot the MCP23S17 SPI port expander - https://github.com/RobTillaart/MCP23S17
Programming Interface is kept the same as much as possible.
2021-01-29 06:31:58 -05:00
2022-09-28 05:19:03 -04:00
Since 0.3.1 the **digitalWrite(pin, value)** is optimized.
If a pin is not changed it will not be written again to save time.
2021-01-29 06:31:58 -05:00
## Interface
### Constructor
2021-12-21 11:12:20 -05:00
- **MCP23017(uint8_t address, TwoWire \*wire = &Wire)** constructor, with default Wire interface.
2021-09-17 04:30:51 -04:00
Can be overruled with Wire0..WireN.
- **bool begin()** for UNO, returns true if successful.
2021-12-21 11:12:20 -05:00
- **bool begin(uint8_t sda, uint8_t scl)** for ESP32, returns true if successful.
2021-09-17 04:30:51 -04:00
- **bool isConnected()** returns true if connected, false otherwise.
2021-01-29 06:31:58 -05:00
2021-09-17 04:30:51 -04:00
### Single pin interface
2021-01-29 06:31:58 -05:00
2022-09-28 05:19:03 -04:00
- **bool pinMode(uint8_t pin, uint8_t mode)** pin = 0..15, mode = INPUT, OUTPUT. Returns true if successful.
- **bool digitalWrite(uint8_t pin, uint8_t value)** pin = 0..15, value = LOW(0) HIGH (!0). Returns true if successful.
2021-12-21 11:12:20 -05:00
- **uint8_t digitalRead(uint8_t pin)** pin = 0..15, returns LOW or HIGH, might set the lastError();
2022-09-28 05:19:03 -04:00
- **bool setPolarity(uint8_t pin, bool reversed)** pin = 0..15, set reversed flag. Returns true if successful.
- **bool getPolarity(uint8_t pin, bool &reversed)** pin = 0..15, reads reversed flag. Returns true if successful.
- **bool setPullup(uint8_t pin, bool pullup)** pin = 0..15, set pull-up flag. Returns true if successful.
- **bool getPullup(uint8_t pin, bool &pullup)** pin = 0..15, reads pull-up flag. Returns true if successful.
2021-01-29 06:31:58 -05:00
### 8 pins interface
2022-09-28 05:19:03 -04:00
- **bool pinMode8(uint8_t port, uint8_t value)** port = 0..1, value = 0..255. Returns true if successful.
- **bool write8(uint8_t port, uint8_t value)** port = 0..1, value = 0..255. Returns true if successful.
2021-12-21 11:12:20 -05:00
- **uint8_t read8(uint8_t port)** port = 0..1, reads 8 pins into one byte.
2022-09-28 05:19:03 -04:00
- **bool setPolarity8(uint8_t port, uint8_t mask)** port = 0..1, sets polarity
for 8 channels at once.
Returns true if successful.
2021-09-17 04:30:51 -04:00
- **bool getPolarity8(uint8_t port, uint8_t &mask)** port = 0..1, reads polarity of 8 channels at once.
2022-09-28 05:19:03 -04:00
Returns true if successful.
2022-01-09 14:53:12 -05:00
- **bool setPullup8(uint8_t port, uint8_t mask)** port = 0..1, sets pull-up for 8 channels at once.
2022-09-28 05:19:03 -04:00
Returns true if successful.
2021-12-21 11:12:20 -05:00
- **bool getPullup8(uint8_t port, uint8_t &mask)** port = 0..1, reads pull-up for 8 channels at once.
2022-09-28 05:19:03 -04:00
Returns true if successful.
2021-01-29 06:31:58 -05:00
2022-01-09 14:53:12 -05:00
### 16 pins interface
2022-09-28 05:19:03 -04:00
- **bool pinMode16(uint16_t value)** value = 0..0xFFFF. Returns true if successful.
- **bool write16(uint16_t value)** value = 0..0xFFFF. Returns true if successful.
2022-01-09 14:53:12 -05:00
- **uint16_t read16()** reads 16 pins into an uint16_t.
- **bool setPolarity16(uint16_t mask)** sets polarity for 16 channels.
2022-09-28 05:19:03 -04:00
Returns true if successful.
2022-01-09 14:53:12 -05:00
- **bool getPolarity16(uint16_t &mask)** reads polarity of 16 channels.
2022-09-28 05:19:03 -04:00
Returns true if successful.
2022-01-09 14:53:12 -05:00
- **bool setPullup16(uint16_t mask)** sets pull-up for 16 channels.
2022-09-28 05:19:03 -04:00
Returns true if successful.
2022-01-09 14:53:12 -05:00
- **bool getPullup16(uint16_t &mask)** reads pull-up for 16 channels.
2022-09-28 05:19:03 -04:00
Returns true if successful.
2022-01-09 14:53:12 -05:00
2021-01-29 06:31:58 -05:00
### Error codes
2022-09-28 05:19:03 -04:00
If one of the above functions return false, there might be an error.
2021-09-17 04:30:51 -04:00
- **int lastError()** Above functions set an error flag that can be read with this function.
Reading it will reset the flag to **MCP23017_OK**.
2021-01-29 06:31:58 -05:00
| DESCRIPTION | VALUE |
|:----------------------|:-----:|
| MCP23017_OK | 0x00 |
| MCP23017_PIN_ERROR | 0x81 |
| MCP23017_I2C_ERROR | 0x82 |
| MCP23017_VALUE_ERROR | 0x83 |
| MCP23017_PORT_ERROR | 0x84 |
2021-12-21 11:12:20 -05:00
## Operation
See examples.
2021-06-06 13:58:43 -04:00
## Future
2021-09-17 04:30:51 -04:00
2021-06-06 13:58:43 -04:00
#### Must
2021-09-17 04:30:51 -04:00
- Improve and extend documentation
- add examples
2021-06-06 13:58:43 -04:00
#### Should
2021-09-17 04:30:51 -04:00
- extend error codes
- optimize code - squeeze footprint
2021-06-06 13:58:43 -04:00
#### Could
2021-09-17 04:30:51 -04:00
2021-06-06 13:58:43 -04:00
- initial value (16 bit?) as begin parameter (breaking change)
2021-12-21 11:12:20 -05:00
- depends on input output pull-up etc?
2021-06-06 13:58:43 -04:00
- investigate auto address increment?