I want to store the log of RFID tag into the Micro SD card, but RFID and SD card having MOSI and MISO. So i want to know how to connect RFID and SD card to one Arduino UNO.
How to connect RC522 RFID module and SD-Card Adapter to one Arduino board?
6.1k views Asked by ajit.jadhav At
3
There are 3 answers
0
On
You can connect multiple slaves to same SPI instance ie, same MOSI, MISO and clock lines. Then you can select a particular slaves based on the status of Slave Select(SS) pin connected to the corresponding slave device. See this tutorial to understand the concept of slave select. You need to connect one pin(say X) to SS line of SD and another pin(pin Y) to SS line of RFID.
Don't forget that you can communicate with only one device at a given time. You have to switch between SD and RFID by changing state of pin X and Y. Copy data from RFID to memory after enabling SS for RFID and then copy that data to SD by enabling its SS.
See arduino uno page to get more details regarding the pins.
Yes, I got the answer. Only add the 220K register to SD card MISO pin before connect to Arduino.For more information see attached image