Hello guys, I'm trying to read pin status of a mcp23017 in one shot using the Adafruit_mcp23017 library (https://github.com/adafruit/Adafruit...rduino-Library);
The sketch:
Result: 32767/111111111111111 : A: 255/11111111 : B: 127/1111111Code:#include <Adafruit_MCP23017.h> /* Our I2C MCP23017 GPIO expanders */ Adafruit_MCP23017 mcp; void setup() { Serial.begin(9600); Serial.println("MCP23007 testbuttons ..."); // mcp.begin(); Wire.setClock(100000); // setup pins, pullup resistor and INPUT for (int i = 0; i < 15; i++) { mcp.pinMode(i, INPUT); mcp.pullUp(i,HIGH); } } void loop() { int i = 0; delay(50); // all pins in one shot uint16_t pins = mcp.readGPIOAB(); // GPA uint8_t pinA = mcp.readGPIO(0); // GPB uint8_t pinB = mcp.readGPIO(1); Serial.println("Read: " + String(pins)+ "/"+ String(pins, BIN)+ " : A: "+String(pinA)+"/"+String(pinA, BIN)+ " : B: "+String(pinB)+"/"+String(pinB, BIN)); }
Am I wrong or it should be 65535 ? Also B should be 255..
I tried 2 IC, one normal size on a breadboard and one on small board with the smd version.
Thanks,
Daniele.