簡體   English   中英

Arduino NFC PN532

[英]Arduino NFC PN532

您好,我試圖制作一個程序來比較NFC標簽#ID,我非常習慣於Arduino,但是我不習慣於SPI編程。

我搜索了很多,但是我真的不知道我到底需要什么。

我正在嘗試匹配NFC標簽#ID和變量NFC1。

誰能幫我? 請?

我只需要一些信息/幫助以使if語句起作用。

#include <PN532.h>
#include <SPI.h>

//SPI: 10 (SS), 11 (MOSI), 12 (MISO), 13 (SCK)

/*Chip select pin can be connected to D10 or D9 which is hareware optional*/
/*if you the version of NFC Shield from SeeedStudio is v2.0.*/
#define PN532_CS 10
PN532 nfc(PN532_CS);
#define  NFC_DEMO_DEBUG 1

int BUZZER = 6;
uint32_t NFC1 = 3795120787;
int NFC2 = 3262404755;
int NFC3 = 46356883;
int NFC4 = 35320979;
int NFC5 = 3257334163;

void setup(void) {

pinMode(BUZZER, OUTPUT);
#ifdef NFC_DEMO_DEBUG
Serial.begin(9600);
Serial.println("Hello!");
#endif
nfc.begin();

uint32_t versiondata = nfc.getFirmwareVersion();
if (! versiondata) {
#ifdef NFC_DEMO_DEBUG
Serial.print("Didn't find PN53x board");
Serial.print("");
#endif
while (1); // halt
}
#ifdef NFC_DEMO_DEBUG
// Got ok data, print it out!
Serial.print("Found chip PN5"); 
Serial.println((versiondata>>24) & 0xFF, HEX);
/*Serial.print("Firmware ver. "); 
Serial.print((versiondata>>16) & 0xFF, DEC);
Serial.print('.'); 
Serial.println((versiondata>>8) & 0xFF, DEC);
Serial.print("Supports "); 
Serial.println(versiondata & 0xFF, HEX);*/
#endif
// configure board to read RFID tags and cards
nfc.SAMConfig();
}


void loop(void) {
uint32_t id;
// look for MiFare type cards
id = nfc.readPassiveTargetID(PN532_MIFARE_ISO14443A);

if (id != 0) {
#ifdef NFC_DEMO_DEBUG
Serial.println("");
Serial.print("Card #"); 
Serial.println(id);
analogWrite(BUZZER, 50);
delay(100);
analogWrite(BUZZER, 0);
delay(1000);
#endif
//char ch = nfc.readPassiveTargetID(PN532_MIFARE_ISO14443A);

if(NFC1 = nfc.readPassiveTargetID(PN532_MIFARE_ISO14443A)){

    analogWrite(6, 255);
    delay(250);
    analogWrite(6, 0);
  /*analogWrite(BUZZER, 50);
  delay(50);
  analogWrite(BUZZER, 0);
  delay(50);
  analogWrite(BUZZER, 50);
  delay(50);
  analogWrite(BUZZER, 0);*/}

  else {
    analogWrite(5, 255);
    delay(250);
    analogWrite(5, 0);
  /*analogWrite(BUZZER, 50);
  delay(100);
  analogWrite(BUZZER, 0);
  delay(100);
  analogWrite(BUZZER, 50);
  delay(100);
  analogWrite(BUZZER, 0);
  delay(100);
  analogWrite(BUZZER, 50);
  delay(100);
  analogWrite(BUZZER, 0);*/}
  }
   }

常見錯誤,編譯器可以為您提供幫助

更改此行:

uint32_t NFC1 = 3795120787;

到這行:

const uint32_t NFC1 = 3795120787;

現在,您將得到一個編譯器錯誤,該錯誤將導致您進入:o。

這行需要= = ,而不是= 不是這個:

if(NFC1 = nfc.readPassiveTargetID(PN532_MIFARE_ISO14443A)){   / doh!

這個:

if(NFC1 == nfc.readPassiveTargetID(PN532_MIFARE_ISO14443A)){   / ahh

旁注,這是一個常見的輸入錯誤,也是為什么

if(1 == somevar)  // is superior to

if(somevar == 1)  // something that seems exactly the same

因為編譯器會告訴你

if(1 = somevar)  // no, you can't assign to a constant

if(somevar = 1)  // okay, whatever you want boss

此建議來自Maguire和Moore的“書面實證”,對我很有幫助。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM