Hello guys, I'm trying to use a RFID-RC522 Rfid reader on a Arduino Uno WiFi Rev2 board. I searched on the internet about the SPI pins on this board but haven't been able to find a proper pinout schematic.
For information, my pins are connected like this : SDA-SDA, SCK- ICSP pin 3 , MOSI-ICSP pin 2, MISO- ICSP pin 1, IRQ- none, GND-GND, RST-DP9, 3.3V-3.3V.
Btw, just tested the rfid module on an MKR WiFi 1010 Board and it worked... I guess the problem is the SPI pins on the WiFi Rev2 board
SCK and MISO look OK, but MOSI should be on pin 4.
and "SDA" (which is "SS" for SPI purposes) should probably connect to pin 10, and not the SDA pin of the Arduino. (apparently the RFID module supports several communications protocols, so that the pin labeled "SDA" can be either SDA (if using I2C), RXD (if using UART), or SS (if using SPI.) Are you sure you want to use SPI? It almost seems the least appropriate for something like an RFID reader. (But I didn't see info in the tutorial you linked for using the other methods ))
Thank you a lot for your reply, but I 'm 100% sure that it's not damaged, I've just oppened it's package today and hooked it up to the 3.3V pin. So I guess there isn't any problem...
Thank you a lot for your explaination, will try it on the Uno WiFi Rev2 board later Currently working on the same project but on an MKR WiFi 1010 board.