查看“【识别标签ID】”的源代码
←
【识别标签ID】
跳转至:
导航
、
搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
{| style="width: 800px;" |- | *1)所需硬件:【[[Microduino-Core/zh]]】,【[[Microduino-USBTTL/zh]]】或【[[Microduino-USBTTL-C/zh]]】,【[[Microduino-Module NFC/zh]]】(带天线) *2)所需软件:Microduino IDE 1.6.7或以上版本。下载如下程序到核心模块Core中(复制粘贴到IDE中,直接下载,或在文件→示例→NFC中选择一个示例) <source lang="cpp"> #include <Microduino_NFC.h> NFC nfc; void setup(void) { Serial.begin(115200); Serial.println("Hello!"); uint32_t versiondata = nfc.begin(); if (! versiondata) { Serial.print("Didn't find PN53x board"); while (1); // halt } // 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); // Set the max number of retry attempts to read from a card // This prevents us from waiting forever for a card, which is // the default behaviour of the PN532. nfc.setPassiveActivationRetries(0xFF); Serial.println("Waiting for an ISO14443A card"); } void loop(void) { boolean success; uint8_t uid[] = { 0, 0, 0, 0, 0, 0, 0 }; // Buffer to store the returned UID uint8_t uidLength; // Length of the UID (4 or 7 bytes depending on ISO14443A card type) // Wait for an ISO14443A type cards (Mifare, etc.). When one is found // 'uid' will be populated with the UID, and uidLength will indicate // if the uid is 4 bytes (Mifare Classic) or 7 bytes (Mifare Ultralight) success = nfc.readPassiveTargetID(PN532_MIFARE_ISO14443A, uid, &uidLength); if (success) { Serial.println("Found a card!"); Serial.print("UID Length: ");Serial.print(uidLength, DEC);Serial.println(" bytes"); Serial.print("UID Value: "); for (uint8_t i=0; i < uidLength; i++) { Serial.print(" 0x");Serial.print(uid[i], HEX); } Serial.println(""); // Wait 1 second before continuing delay(1000); } else { // PN532 probably timed out waiting for a card Serial.println("Timed out waiting for a card"); } } </source> *3)确认读卡器已经连接好,如图所示。并且将卡片放好,贴紧读卡器。 [[file:NFC example1-2.JPG|thumb|center|600px]] *4)下载成功后打开串口监视器,波特率选择115200. [[file:NFC example1.png|center|600px|thumb]] *5)可以通过串口观察到返回信息,可以看到标签的UID与UID长度。 到这一步就可以简单的形成一个NFC标签控制应用的基础了,通过识别正确的UID执行对应功能。 *'''[[Microduino-Module NFC/zh | 返回Microduino-NFC模块页面]]''' |}
返回至
【识别标签ID】
。
导航菜单
个人工具
创建账户
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
Welcome
首页
创客大赛
大赛详情
3D打印
安装月球车
图形化编程
操控月球车
升级月球车
编程工具下载
软件下载
Arduino
Processing
Mixly
Scratch
模块套件
Microduino 102
mCookie 102
mCookie 202
mCookie 302
IBC
其他
应用套件
四轴飞行器
平衡车
小车CUBE
音乐播放器
刷卡音乐播放器
wifi气象站
彩虹音乐触摸灯
分贝检测仪
迎门汇报
LED点阵时钟
LED点阵屏幕
硬件
mCookie
Sensor
Microduino
MicroWrt
MicroNux
MicroRobot-Core
MicroRobot-CoreESP
ideaBoard
ideaBox
MicroMV
MicroAI
帮助
常见问题
帮助
工具
链入页面
相关更改
特殊页面
页面信息