Meadow.Foundation.ICs.IOExpanders.Mcp23xxx
Mcp23xxxx | |
---|---|
Status | |
Source code | GitHub |
NuGet package |
The MCP chip family, referred to as MCP23XXX to represent the variations, is a digital I/O expander chip that uses I2C to communicate. It can be used to add additional digital input and output ports to Meadow and can be combined with up to eight MCP23xxx chips in total, providing 64 additional ports.
MCP23XXX chips are ubiquitous in the hardware world and is the typical interface chip for common I2C LCD backpacks, with the 74595 chip being the typical interface chip for SPI LCD backpacks.
MCP Chip Family
The MCP23XXX family includes the 8-bit MCP23008 and also includes the MCP23017, which is a 16-bit version of the MCP23008, offering 16 digital ports in total, and the MCP23S08 and MCP23S017 which are SPI versions of the MCP23008 and MCP23017, respectively.
Chip Addressing
The I2C address of the chip is configurable via the address pins and is in the binary form of 0100[A2][A1][A0]
, where A2
, A1
, and A0
refer to the three address pins on the chip:
For example, if all address pins were tied to ground, then the address of the chip would be 0100000
in binary, or 0x20
in hex, and 32
in decimal.
The I2C addresses can then be as follows, where 0
represents an address pin connected to ground, and 1
represents an address pin connected to 3.3V
:
Address Header | A2 | A1 | A0 | Resulting Hex Address | Resulting Decimal Address |
---|---|---|---|---|---|
0100 | 0 | 0 | 0 | 0x20 | 32 |
0100 | 0 | 0 | 1 | 0x21 | 33 |
0100 | 0 | 1 | 0 | 0x22 | 34 |
0100 | 0 | 1 | 1 | 0x23 | 35 |
0100 | 1 | 0 | 0 | 0x24 | 36 |
0100 | 1 | 0 | 1 | 0x25 | 37 |
0100 | 1 | 1 | 0 | 0x26 | 38 |
0100 | 1 | 1 | 1 | 0x27 | 39 |
Because there are 8 address possibilities, it's possible to put 8 MCP23XXX chips on a single I2C bus.
To make this simpler, when instantiating one of the MCP23XXX family of chip objects, there is a constructor overload that takes the address pin configurations instead of an address, so that Meadow.Foundation uses the appropriate address based on the pins, instead of requiring a pre-computed address.
Other Pins
In addition to the address pins, there are a number of other pins that must be connected up:
- Not Reset - The
RESET
pin is actually a "Not Reset." The line above "Reset" means "not." So unless that pin is pulled high (3.3V
), the chip will reset itself at random times and you'll get connection errors. - SCL and SDA - The
SCL
andSDA
pins are the I2C clock and data pins and go to theSC
andSD
pins on the Meadow, respectively. Each of these should also generally be pulled high (3.3V
) via a4.7kΩ
resistor. See the I2C guide for more information. - INT - The
INT
pin is for interrupt notifications, and is only necessary when using the GPIO pins in input mode and you want an event raised when the input value changes. - VSS and VDD - These go to ground and 3.3V power, respectively, and power the chip.
Code Examples
You can find code examples and links to sample projects for each of the MCP23XXX families and specific chips.