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.
相关问题
- Android app not synchronized with Arduino Serial c
- Serial Communication between Arduino and Python, i
- SIM900 GSM/GPRS not getting a proper AT+CREG? answ
- How to determine from which keyboard the input com
- Save .txt file on Android Q
相关文章
- Android (Write on external SD-Card): java.io.IOExc
- Arduino not able to send serial data back
- XTEA encryption in PHP and decryption in C
- Getting only once permission for sdcard window on
- Terminating a voice call via AT Command
- Reading a Serial Port - Ignore portion of data wri
- Authenticating Ultralight EV1 with PC/SC reader
- Emulate Mifare card with Android 4.4
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
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.
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.