miguelbalboa / rfid

Arduino RFID Library for MFRC522
The Unlicense
2.75k stars 1.43k forks source link

Making ReadUidMultiReader.ino works #527

Closed danbraik closed 4 years ago

danbraik commented 4 years ago

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,

Rotzbua commented 4 years ago

there is already a huge topic #290