Closed Obili69 closed 9 months ago
thanks for reporting this issue, as I am rather busy I have little time to investigate. might take several days
No problem. Im currently also investigating the issue.
Some questions:
Some answers :)
CODE:
//
// FILE: MCP23S17_digitalRead.ino
// AUTHOR: Rob Tillaart
// PURPOSE: test MCP23S17 library
// URL: https://github.com/RobTillaart/MCP23S17
#include "MCP23S17.h"
MCP23S17 MCP(42);
int rv = 0;
void setup()
{
Serial.begin(115200);
Serial.println();
Serial.print("MCP23S17_LIB_VERSION: ");
Serial.println(MCP23S17_LIB_VERSION);
delay(100);
SPI.begin(12, 11, 13, 42);
rv = MCP.begin();
Serial.println(rv ? "true" : "false");
rv = MCP.pinMode8(0, 0xFF);
Serial.println(rv);
rv = MCP.pinMode8(1, 0x00);
Serial.println(rv);
Serial.print("HWSPI: ");
Serial.println(MCP.usesHWSPI());
Serial.println("TEST read1(pin)");
for (int pin = 0; pin < 8; pin++)
{
int val = MCP.read1(pin);
Serial.print(val);
Serial.print(' ');
delay(100);
}
Serial.println();
MCP.write8(1, 0xFF);
}
void loop()
{
delay(1000);
Serial.println("TEST read1(pin)");
for (int pin = 0; pin < 8; pin++)
{
int val = MCP.read1(pin);
Serial.print(val);
Serial.print(' ');
delay(100);
}
Serial.println();
}
// -- END OF FILE --
(added code tags)
Could you run a test with software Spi ? You should be able to use the same pins.
MCP23S17 MCP(select, datain, dataout, clock)
A thought popped up Could it be that datain and dataout were swapped?
Okay so i tried it with sw SPI. The Outputs are still working no reaction from the inputs. I hooked the Inputs directly to VCC testet the voltage. I have 3.3V on the PIN.
Do you use this one - https://www.mikroe.com/expand-2-click (I2C) or - https://www.mikroe.com/expand-click (SPI)
just to be sure.
I got the Mirkoe-951 As far as i saw thats the SPI version. What i think is wierd is that the Outputs are working BTW props for the amount of libs you crated
News I found a second click board and i tried that. It just works now. Thanks A lot anyway. Hope you keep up the great work. I donated you a bit. Sorry for the time waste.
Sorry for the time waste.
If you learn something, time is never wasted! Was it a different type of board, or is the first one a faulty one? just to understand the root cause.
Hope you keep up the great work, I donated you a bit.
Will do so, thank you, much appreciated!
The board was just faulty only the port i used as a output was working i changed the port i uses as input to output and it didnt work anymore. :( Thanks have a nice day
Hello Thanks for the great library I have a problem when using all read functions with the MCP23S17. I have a switch on a dev board and pull PA 0-2 and PA 0-2 to either VCC(3.3V) or GND. Im using your lib example(digital read). I changed one line. SPI.begin(); to SPI.begin(12, 11, 13, 42); Im using the MIRKOE EXPAND click from mirkoe end an esp32s3 The serial output looks like this
Best and thank you