How to connect RC522 RFID module and SD-Card Adapt

2019-09-20 00:09发布

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.

3条回答
乱世女痞
2楼-- · 2019-09-20 00:55

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

查看更多
虎瘦雄心在
3楼-- · 2019-09-20 01:03

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.

查看更多
等我变得足够好
4楼-- · 2019-09-20 01:09

Pins named MOSI and MISO indicate an SPI bus. There should also be a pin labeled SS, CS or similar (slave select). you can hook up several slaves to one master and select the device you want to talk to using that pins logic level.

There should be tons of tutorials and examples online.

查看更多
登录 后发表回答