【问题标题】:Arduino NFC PN532Arduino NFC PN532
【发布时间】:2013-09-19 21:21:23
【问题描述】:

你好我正在尝试制作一个程序来比较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);*/}
  }
   }

【问题讨论】:

    标签: arduino nfc spi


    【解决方案1】:

    常见错误,编译器可以帮助你

    改变这一行:

    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 的“Writing Solid Code”,对我很有帮助。

    【讨论】:

    • 我明白了!我从if(NFC1 == nfc.readPassiveTargetID(PN532_MIFARE_ISO14443A)) 更改为if(NFC1 == id) 现在可以使用了,非常感谢您的帮助!
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-03-07
    • 2018-09-12
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多