We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello !
I was trying to make the example ReadUidMultiReader.ino works with fiability. It seems that the problem come from #define SS_1_PIN 10
#define SS_1_PIN 10
because it is used as SS for Arduino Uno to known that it is a slave SPI (https://www.arduino.cc/en/reference/SPI)
So I used another pin and just add in the setup: pinMode(10, OUTPUT);
pinMode(10, OUTPUT);
and it seems to work.
I am not sure if this is correct solution. Can someone can test it and corroborate my observation please ?
Best regards,
The text was updated successfully, but these errors were encountered:
there is already a huge topic #290
Sorry, something went wrong.
No branches or pull requests
Hello !
I was trying to make the example ReadUidMultiReader.ino works with fiability.
It seems that the problem come from
#define SS_1_PIN 10
because it is used as SS for Arduino Uno to known that it is a slave SPI (https://www.arduino.cc/en/reference/SPI)
So I used another pin and just add in the setup:
pinMode(10, OUTPUT);
and it seems to work.
I am not sure if this is correct solution. Can someone can test it and corroborate my observation please ?
Best regards,
The text was updated successfully, but these errors were encountered: