RFID-RC522(MF-RC522)モジュールがあり、Arduinoスケッチプログラムを使用しています。このRFIDを使用するために、Arduino MFRC522ライブラリーをダウンロードしました。
そして、私はライブラリのサンプルコードを実行します。
これがコードです。
/*
* MFRC522 - Library to use ARDUINO RFID MODULE KIT 13.56 MHZ WITH TAGS SPI W AND R BY COOQROBOT.
* The library file MFRC522.h has a wealth of useful info. Please read it.
* The functions are documented in MFRC522.cpp.
*
* Based on code Dr.Leong ( WWW.B2CQSHOP.COM )
* Created by Miguel Balboa (circuitito.com), Jan, 2012.
* Rewritten by Søren Thing Andersen (access.thing.dk), fall of 2013 (Translation to English, refactored, comments, anti collision, cascade levels.)
* Released into the public domain.
*
* Sample program showing how to read data from a PICC using a MFRC522 reader on the Arduino SPI interface.
*----------------------------------------------------------------------------- empty_skull
* Aggiunti pin per arduino Mega
* add pin configuration for arduino mega
* http://mac86project.altervista.org/
----------------------------------------------------------------------------- Nicola Coppola
* Pin layout should be as follows:
* Signal Pin Pin Pin
* Arduino Uno Arduino Mega MFRC522 board
* ------------------------------------------------------------
* Reset 9 5 RST
* SPI SS 10 53 SDA
* SPI MOSI 11 51 MOSI
* SPI MISO 12 50 MISO
* SPI SCK 13 52 SCK
*
* The reader can be found on eBay for around 5 dollars. Search for "mf-rc522" on ebay.com.
*/
#include <SPI.h>
#include <MFRC522.h>
#define SS_PIN 10
#define RST_PIN 9
MFRC522 mfrc522(SS_PIN, RST_PIN); // Create MFRC522 instance.
void setup() {
Serial.begin(9600); // Initialize serial communications with the PC
SPI.begin(); // Init SPI bus
mfrc522.PCD_Init(); // Init MFRC522 card
Serial.println("Scan PICC to see UID and type...");
}
void loop() {
// Look for new cards
if ( ! mfrc522.PICC_IsNewCardPresent()) {
return;
}
// Select one of the cards
if ( ! mfrc522.PICC_ReadCardSerial()) {
return;
}
// Dump debug info about the card. PICC_HaltA() is automatically called.
mfrc522.PICC_DumpToSerial(&(mfrc522.uid));
}
このコードを実行してカードの1つをRFIDリーダーに挿入すると、Arduino IDEのシリアルモニターに多くの情報が表示されます。このようなもの...(画像を投稿できませんでした)
//
Scan PICC to see UID and type...
Card UID : 84 90 6C A7
PICC type : MIFARE 1KB
Sector Block 0 1 2 3 4 5 6 7 ...
15 63 00 00 00 00 ...
//
しかし、私が必要なのはカードUIDだけです。このケースは84 90 6C A7です。
実際、プロジェクトがあります。 RFIDの特定のカードを置いたらLEDをオンにしたいです。これを行うには、カードUIDを読み取り、これをArduinoスケッチプログラムの変数に割り当てる必要があります。
しかし、この場合RFIDタグのUIDを取得する方法がわかりません(このライブラリと関数は私にとって複雑です)。
誰かがこれを行う方法を知っている場合は、私を助けてください。
現在、Arduinoを利用できないため、これはテストされていないコードです。うまくいくことを願っています。
あなたの例のDumpToSerialコードをこのようなものに置き換えてください
if (mfrc522.uid.uidByte[0] == 0x84 && mfrc522.uid.uidByte[1] == 0x90 && mfrc522.uid.uidByte[2] == 0x6c && mfrc522.uid.uidByte[3] == 0xa7) { // turn your LED on }
以下は、UIDを返す関数です。
/**
* mfrc522.PICC_IsNewCardPresent() should be checked before
* @return the card UID
*/
unsigned long getID(){
if ( ! mfrc522.PICC_ReadCardSerial()) { //Since a PICC placed get Serial and continue
return -1;
}
unsigned long hex_num;
hex_num = mfrc522.uid.uidByte[0] << 24;
hex_num += mfrc522.uid.uidByte[1] << 16;
hex_num += mfrc522.uid.uidByte[2] << 8;
hex_num += mfrc522.uid.uidByte[3];
mfrc522.PICC_HaltA(); // Stop reading
return hex_num;
}
次のように使用します。
if(mfrc522.PICC_IsNewCardPresent()) {
unsigned long uid = getID();
if(uid != -1){
Serial.print("Card detected, UID: "); Serial.println(uid);
}
}
同様の議論 。におけるThomas Matthewsの回答に基づく
あなたはそれを行うことでそれを得ることができます:
mfrc522.uid.uidByte
そしてそれはバイトです[10]
別の方法を見つけました。
ライブラリ内MFRC522.cpp atline 1391
_Serial.print(F("Card UID:"));
for (byte i = 0; i < uid->size; i++)
_
この関数呼び出しから別の関数を作成しました:PICC_DumpDetailsToSerialUid(Uid *uid)
それは次のようになります:
_ //This is just for read UID!
void MFRC522::PICC_DumpDetailsToSerialUid(Uid *uid){
Serial.print(F("Card JUST UID :"));
for (byte i = 0; i < uid->size; i++) {
if(uid->uidByte[i] < 0x10)
Serial.print(F(" 0"));
else
Serial.print(F(" "));
Serial.print(uid->uidByte[i], HEX);
}
Serial.println();
}
_
あなたはそれをあなたが必要とするあらゆる場所に置くことができます、私はそれがどこにあるかを知るためにそれを大きな関数の近くに置くだけです。
その関数を追加した後、MFRC522.hライブラリの行409に移動して追加する必要があります
_void PICC_DumpDetailsToSerialUid(Uid *uid);
_
そのライブラリでこれらの2つの編集を行った後、必要な場所で関数を呼び出すことができます。
Arduinoでmfrc522.PICC_DumpDetailsToSerialUid(&(mfrc522.uid));
を使用して呼び出すと、uid専用の関数が1つあります。
他に何か必要な場合は、他の関数を使ってそれを行うことができます。頑張ってください:)