Jumat, 09 Juni 2017

Menggunakan 2 RC522 Secara Bersamaan Pada Arduino Uno

Pada kesempatan kali ini kita akan mencoba menggunakan 2 buah module RC522 pada sebuah arduino uno, ini dibuat karena bisa terjadi suatu masalah dimana memerlukan dua buah reader pada satu mikrokontroler. Serta untuk menghemat I/O pada Arduino bisa menggunakan bidirectional converter. 

Modul/Part yang diperlukan:

  • Arduino uno
  • Breadboard
  • Bidirectional Converter (x2)
  • Mifare RC522 (x2)
  • tag RFID
  • Jumper (secukupnya)
Gambar Rangkaian:



Library:
Download disini

Setelah rangkaian sudah jadi hubungkan arduino dengan Arduino IDE dan buka examples bernama ReadUidMultiReader atau bisa copy kodingan dibawah ini.

Sourcecode:

#include 
#include 

#define RST_PIN         9          // Configurable, see typical pin layout above
#define SS_1_PIN        10         // Configurable, take a unused pin, only HIGH/LOW required, must be diffrent to SS 2
#define SS_2_PIN        8          // Configurable, take a unused pin, only HIGH/LOW required, must be diffrent to SS 1

#define NR_OF_READERS   2

byte ssPins[] = {SS_1_PIN, SS_2_PIN};

MFRC522 mfrc522[NR_OF_READERS];   // Create MFRC522 instance.

/**
 * Initialize.
 */
void setup() {

  Serial.begin(9600); // Initialize serial communications with the PC
  while (!Serial);    // Do nothing if no serial port is opened (added for Arduinos based on ATMEGA32U4)

  SPI.begin();        // Init SPI bus

  for (uint8_t reader = 0; reader < NR_OF_READERS; reader++) {
    mfrc522[reader].PCD_Init(ssPins[reader], RST_PIN); // Init each MFRC522 card
    Serial.print(F("Reader "));
    Serial.print(reader);
    Serial.print(F(": "));
    mfrc522[reader].PCD_DumpVersionToSerial();
  }
}

/**
 * Main loop.
 */
void loop() {

  for (uint8_t reader = 0; reader < NR_OF_READERS; reader++) {
    // Look for new cards

    if (mfrc522[reader].PICC_IsNewCardPresent() && mfrc522[reader].PICC_ReadCardSerial()) {
      Serial.print(F("Reader "));
      Serial.print(reader);
      // Show some details of the PICC (that is: the tag/card)
      Serial.print(F(": Card UID:"));
      dump_byte_array(mfrc522[reader].uid.uidByte, mfrc522[reader].uid.size);
      Serial.println();
      Serial.print(F("PICC type: "));
      MFRC522::PICC_Type piccType = mfrc522[reader].PICC_GetType(mfrc522[reader].uid.sak);
      Serial.println(mfrc522[reader].PICC_GetTypeName(piccType));

      // Halt PICC
      mfrc522[reader].PICC_HaltA();
      // Stop encryption on PCD
      mfrc522[reader].PCD_StopCrypto1();
    } //if (mfrc522[reader].PICC_IsNewC
  } //for(uint8_t reader
}

/**
 * Helper routine to dump a byte array as hex values to Serial.
 */
void dump_byte_array(byte *buffer, byte bufferSize) {
  for (byte i = 0; i < bufferSize; i++) {
    Serial.print(buffer[i] < 0x10 ? " 0" : " ");
    Serial.print(buffer[i], HEX);
  }
}

 Setelah sudah diflash dan berhasil buka serial monitor pada Arduino IDE lalu tempelkan tag RFID pada masing-masing reader maka akan muncul seperti ini:



SUMBER
SUMBER LAGI

1 komentar: