arduino-mcp23017
arduino-mcp23017 copied to clipboard
Complete support of MCP23017
Prior to this PR, most functions in the MCP23017 API fail silently, despite the I2C Wire libs error status return code. Now, like other I2C slave driver libs, the return...
There is also a SPI version of that chip. Why not implementing that chip also?
i tried to pass an instance of MCP23017 by reference to the constructor of another class. Doing this seems to require a constructor without arguments. I added the constructor without...
Hey thanks for this very useful library! In an existing hardware project I needed to replace a MCP23017 chip by its SPI counterpart MCP23S17. Although I could not find a...
I rewrote the library into a base-classed one, and added the SPI-based MCP23S17 based on Felix's implementation of just the readRegister/writeRegister functions. It should be live at my [repo](https://github.com/waltje/Arduino.IOExpander) .....