找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 6680|回复: 2
收起左侧

Arduino RC522 RFID库文件源码资料

[复制链接]
ID:322058 发表于 2018-5-4 14:23 | 显示全部楼层 |阅读模式
0.jpg
RFID实验源程序如下:
  1. /******************************************************************************
  2. ----------------本例程仅供学习使用,未经作者允许,不得用于其他用途。-----------
  3. ------------------------版权所有,仿冒必究!-----------------------------------
  4. ----------------1.开发环境:Arduino IDE-----------------------------------------
  5. ----------------2.测试使用开发板型号:Arduino Leonardo or Arduino UNO R3-------
  6. ----------------3.单片机使用晶振:16M------------------------------------------
  7. ----------------5.作者:神秘藏宝室---------------------------------------------
  8. ******************************************************************************/
  9. #include "RC522.h"
  10. #include <SPI.h>

  11. #define Relay 2

  12. //4 bytes Serial number of card, the 5 bytes is verfiy bytes
  13. unsigned char serNum[5];


  14. void setup()
  15. {
  16.     Serial.begin(9600);
  17.     Serial.print("Ilovemcu.taobao.com");
  18.     pinMode(Relay,OUTPUT);
  19.     SPI.begin();   
  20.     pinMode(chipSelectPin,OUTPUT); // Set digital pin 10 as OUTPUT to connect it to the RFID /ENABLE pin
  21.     digitalWrite(chipSelectPin, LOW); // Activate the RFID reader
  22.     pinMode(NRSTPD,OUTPUT); // Set digital Reset , Not Reset and Power-down
  23.    
  24.     MFRC522_Init();                                                //初始化RFID
  25. }


  26. void loop()
  27. {
  28.     unsigned char status;
  29.     unsigned char str[MAX_LEN];
  30.    
  31.     // Search card, return card types
  32.     status = MFRC522_Request(PICC_REQIDL, str);
  33.     if (status == MI_OK)                        //读取到ID卡时候
  34.     {   
  35.                 // Show card type
  36.                 //ShowCardType(str);
  37.    
  38.                 //Prevent conflict, return the 4 bytes Serial number of the card
  39.                 status = MFRC522_Anticoll(str);
  40.    
  41.                 // str[0..3]: serial number of the card
  42.                 // str[4]: XOR checksum of the SN.
  43.                 if (status == MI_OK)
  44.                 {
  45.                         memcpy(serNum, str, 5);
  46.                         Serial.print("ID:");
  47.                         ShowCardID(serNum);
  48.    
  49.                         // Check people associated with card ID
  50.                         unsigned char* id = serNum;
  51.                         if( id[0]==0xed && id[1]==0x34 && id[2]==0xfa && id[3]==0x95 )
  52.                         {
  53.                                 digitalWrite(Relay,HIGH);                //打开继电器
  54.                                 Serial.println("The Host 1!");
  55.                         }
  56.                         else if(id[0]==0x4C && id[1]==0xB3 && id[2]==0x74 && id[3]==0x19)
  57.                         {
  58.                                 digitalWrite(Relay,LOW);                //继电器
  59.                                 Serial.println("The Host 2!");
  60.                         }
  61.                         else
  62.                         {
  63.                                 Serial.println("Stranger!");
  64.                         }
  65.                         
  66.                 }
  67.                
  68.     }
  69.    
  70.     MFRC522_Halt(); //command the card into sleep mode
  71.     delay(100);
  72. }
复制代码

所有资料51hei提供下载:
lesson38.rar (6.67 KB, 下载次数: 82)
回复

使用道具 举报

ID:341806 发表于 2018-5-30 23:27 | 显示全部楼层
那个,我想问下为什么接入继电器的时候处于高电平状态?
回复

使用道具 举报

ID:986646 发表于 2021-12-1 08:26 来自手机 | 显示全部楼层
请问有RFID头文件吗
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|51黑电子论坛 |51黑电子论坛6群 QQ 管理员QQ:125739409;技术交流QQ群281945664

Powered by 单片机教程网

快速回复 返回顶部 返回列表