0
  • 聊天消息
  • 系统消息
  • 评论与回复
登录后你可以
  • 下载海量资料
  • 学习在线课程
  • 观看技术视频
  • 写文章/发帖/加入社区
会员中心
创作中心

完善资料让更多小伙伴认识你,还能领取20积分哦,立即完善>

3天内不再提示

怎样使用RFID RC-522和Arduino创建一个简单的超市应用程序

454398 来源:网络整理 作者:网络整理 2019-11-25 15:59 次阅读

步骤1:设置ArduinoRFID RC-522(物理连接)

怎样使用RFID RC-522和Arduino创建一个简单的超市应用程序

只需将arduino与RFID连接-RC522,如上图所示。

警告:仅提供3.3V电压,否则模块将烧坏

为Uno/Nano和Mega插脚 strong》

RC522 MODULE Uno/Nano MEGA

SDA D10 D9

SCK D13 D52

MOSI D11 D51

MISO D12 D50

IRQ N/A N/A

GND GND GND

RST D9 D8

3.3V 3.3V 3.3V

第2步:Arduino代码。

复制以下代码,然后将其上传到您的Arduino

/*

PINOUT:

RC522 MODULE Uno/Nano MEGA

SDA D10 D9

SCK D13 D52

MOSI D11 D51

MISO D12 D50

IRQ N/A N/A

GND GND GND

RST D9 D8

3.3V 3.3V 3.3V

*/

/* Include the standard Arduino SPI library */

#include

/* Include the RFID library */

#include

/* Define the DIO used for the SDA (SS) and RST (reset) pins. */

#define SDA_DIO 9

#define RESET_DIO 8

/* Create an instance of the RFID library */

RFID RC522(SDA_DIO, RESET_DIO);

int reader=0;

void setup()

{

Serial.begin(9600);

/* Enable the SPI interface */

SPI.begin();

/* Initialise the RFID reader */

RC522.init();

}

void loop()

{

/* Temporary loop counter */

byte i;

/* Has a card been detected? */

if (RC522.isCard())

{

/* If so then get its serial number */

RC522.readCardSerial();

/* Output the serial number to the UART */

for(i = 0; i 《= 2; i++)

{

Serial.print(RC522.serNum[i],DEC);

//Serial.print(RC522.serNum[i],HEX);

}

Serial.print(“,”);

Serial.print(reader++);

Serial.println();

}

delay(1000);

}

步骤3:设置MySQL

为MySQL安装Wamp服务器并将其配置为存储数据(

运行wamp服务器打开MySQL控制台

选择数据库

然后为您的数据创建表

create table rfid(ID int(8),token int(1),Name varchar(20),Amount int(4));

现在查看此链接以了解如何获取您的RFID标签值,然后使用以下代码插入数据。不要忘记将ID值替换为您的RFID标签值

insert into rfid values(3756178,1,‘Pencil’,20);

使用令牌值作为 1 ,以便在首次读取标签值后,它将自动更改为 2 读取未插入数据库的卡时,不要使用 0 作为令牌值,它将分配0,然后将其显示为“未知卡”。

步骤4:设置处理IDE

下载并安装处理IDE 2.2.1

将上述给定的ZIP提取到MyDocuments/Processing/Libraries

现在打开处理的IDE,并检查库是否正确安装(如上图所示)

然后复制以下代码进行处理并自行命名

import de.bezier.data.sql.*;

import processing.serial.*;

//import java.math.BigInteger;

// created 2005-05-10 by fjenett

// updated fjenett 20080605

MySQL dbconnection;

String s=“ ”;

int Wheight=700;

int Wwidth=1200;

long ID;

int token;

int Amount;

int Total=0;

String[] a={“NULL”,“NULL”};

int end = 10; // the number 10 is ASCII for linefeed (end of serial.println), later we will look for this to break up individual messages

String serial; // declare a new string called ‘serial’ 。 A string is a sequence of characters (data type know as “char”)

Serial port;

String curr,prev,Name;

PFont f;

void setup()

{

//size( Wwidth,Wheight );

size(700,500);

f=createFont(“Arial”,24,true);

// this example assumes that you are running the

// mysql server locally (on “localhost”)。

//

// replace --username--, --password-- with your mysql-account.

//

String user = “root”;

String pass = “”;

// name of the database to use

//

String database = “IOT_Database”;

// name of the table that will be created

String table = “”;

// connect to database of server “localhost”

dbconnection = new MySQL( this, “localhost”, database, user, pass );

port = new Serial(this, Serial.list()[0], 9600); // initializing the object by assigning a port and baud rate (must match that of Arduino)

port.clear(); // function from serial library that throws out the first reading, in case we started reading in the middle of a string from Arduino

serial = port.readStringUntil(end); // function that reads the string from serial port until a println and then assigns string to our string variable (called ‘serial’)

serial = null;

}

void draw()

{

background(255);

textFont(f,24);

fill(0);

text(“Total Amount Rs:”,400,400);

text(Total,585,400);

data();

while (port.available() 》 0)

{

//as long as there is data coming from serial port, read it and store it

serial = port.readStringUntil(end);

}

if (serial != null)

{

prev=curr;

curr=a[1];

a = split(serial, ‘,’); //a new array (called ‘a’) that stores values into separate cells (separated by commas specified in your Arduino program

if((curr).equals(prev))

{

//

}

else

{

//println(“curr”,curr);

//println(“Prev”,prev);

function();

}

}

}

void function()

{

if ( dbconnection.connect() )

{

// now read it back out

//

dbconnection.query( “SELECT * from rfid where ID=”+a[0]+“” );

while (dbconnection.next())

{

ID = dbconnection.getInt(“ID”);

token = dbconnection.getInt(“token”);

Amount = dbconnection.getInt(“Amount”);

}

if(token==0)

{

println(“Ok”);

textFont(f,54);

fill(255,0,0,160);

text(“Unknown Item Detected”,50,300);

delay(2000);

}

else if(token==1)

{

Total=Total+Amount;

dbconnection.query(“update rfid set token=2 where ID=”+a[0]+“” );

println(“Ok”);

textFont(f,24);

fill(255,0,0,160);

//text(“Item Added”,10,30);

delay(1000);

}

else if(token==2)

{

Total=Total-Amount;

dbconnection.query(“update rfid set token=1 where ID=”+a[0]+“” );

println(“Ok”);

textFont(f,24);

fill(255,0,0,160);

//text(“Item Removed”,10,30);

delay(1000);

}

else

{

}

dbconnection.close();

}

else

{

// connection failed !

}

}

void data()

{

int position=100;

if ( dbconnection.connect() )

{

dbconnection.query( “SELECT * from rfid where token=2”);

while (dbconnection.next())

{

Name = dbconnection.getString(“Name”);

Amount = dbconnection.getInt(“Amount”);

textFont(f,24);

fill(0,0,255,160);

text(Name,10,position);

fill(0,0,0,160);

text(Amount,215,position);

position=position+30;

}

}

dbconnection.close();

}

第5步:执行程序

通过单击运行按钮运行程序,请关闭弹出窗口,关闭窗口将停止执行,并在以下查询中查看在MySQL中存储的数据。..

责任编辑:wv

声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉
  • RFID
    +关注

    关注

    387

    文章

    6098

    浏览量

    237276
  • 应用程序
    +关注

    关注

    37

    文章

    3238

    浏览量

    57564
  • Arduino
    +关注

    关注

    187

    文章

    6461

    浏览量

    186563
收藏 人收藏

    评论

    相关推荐

    Air780EP之RC522开发板,你了解吗?

    ; LuatOS-Soc固件获取 https://gitee.com/openLuat/LuatOS/releases 、环境准备 1.1 Air780EP开发板套 1.2 rc522实物
    的头像 发表于 11-03 08:21 153次阅读
    Air780EP之<b class='flag-5'>RC522</b>开发板,你了解吗?

    低功耗4G模组:Air780EP开发板RC522实例

    开发板套 1.2 rc522实物 ​ 二、程序详解 2.1 API说明 2.1.1 设置并启用SPI spi.setup(id, cs
    的头像 发表于 10-21 17:01 189次阅读
    低功耗4G模组:Air780EP开发板<b class='flag-5'>RC522</b>实例

    SI522A 与 恩智浦 RC522 刷卡对比

    去年偶然拿到颗SI522的低功耗IC,再自动寻卡LPCD上取得了不凡的成绩,LPCD低功耗自动寻卡功能只有4.5uA.SI522A针对SI522上的ACD低功耗自动寻卡功能做了全新的
    发表于 09-30 14:19

    可以在单个esp8266上安装两NON OS SDK应用程序吗?

    简单的问题。我可以在单个 esp8266 上安装两 NON OS SDK 应用程序吗?我的自定义引导加载
    发表于 07-19 07:28

    TJDZ-RC522 RFID读卡模块用户操作手册

    RC522读卡模块使用说明
    发表于 06-19 14:32 1次下载

    stm8l151C6 RC522物理SPI没有SCK时钟是怎么回事?

    调试好几天了,在网上试了好多方法还是不通,希望有大神给看下到底代码写的对不对,大家往下看: 硬件连接: 使用的单片机为stm8l151C6,物理SPI和RC522芯片进行连接 PB4:NSS片选
    发表于 04-30 06:25

    【从0开始创建AWTK应用程序】编译应用到RTOS平台

    AWTK是基于C语言开发的跨平台GUI框架。本系列文章介绍如何从0开始创建AWTK应用程序,包括搭建开发调试环境、使用AWTK创建Hello工程并在模拟器上运行、将AWTK应用程序移植
    的头像 发表于 03-21 08:23 558次阅读
    【从0开始<b class='flag-5'>创建</b>AWTK<b class='flag-5'>应用程序</b>】编译应用到RTOS平台

    SI522款兼容RC522/FM17522 开发资料

    SI522 是应用于13.56MHz 非接触式通信中高集成度读写卡系列芯片中的员。是NXP 公司针对\"三表\"应用推出的款低 电压、低成本、体积小的非接触式读写卡芯片
    发表于 02-29 15:56

    如何将HC-SR04连接到Arduino并编写简单程序来测量距离

    种流行的Arduino超声波传感器是HC-SR04。它广泛用于非接触式距离测量,通常用于机器人和自动化项目。本指南将向您展示如何将HC-SR04连接到Arduino并编写
    的头像 发表于 02-11 10:17 2162次阅读
    如何将HC-SR04连接到<b class='flag-5'>Arduino</b>并编写<b class='flag-5'>一</b><b class='flag-5'>个</b><b class='flag-5'>简单</b>的<b class='flag-5'>程序</b>来测量距离

    mfrc522工作原理

    的工作原理。 MFRC522芯片采用13.56 MHz的频率进行射频通信。它包括调制解调器,13.56 MHz的射频前端,以及
    的头像 发表于 01-09 14:15 1903次阅读

    rc522射频模块的工作原理

    RC522射频模块是种基于射频识别技术的读卡器模块,广泛应用于门禁系统、智能家居、智能卡类应用等领域。它具备快速、稳定、安全的特点,能够读取和写入射频卡上的信息。下面将详细介绍RC522射频模块
    的头像 发表于 12-28 16:27 5152次阅读

    【从0开始创建AWTK应用程序】编译应用到嵌入式Linux平台运行

    。搭建Linux平台交叉编译环境在上篇文章我们介绍了使用AWTK开发简单的应用并在PC上模拟运行,本篇文章就来介绍下怎么让应用程序运行在嵌入式Linux平台上。1
    的头像 发表于 12-07 12:08 661次阅读
    【从0开始<b class='flag-5'>创建</b>AWTK<b class='flag-5'>应用程序</b>】编译应用到嵌入式Linux平台运行

    如何从简单的数学表达式创建Saber模型?

    如何从简单的数学表达式创建Saber模型,将你的输出描述为输入的函数?例如 out=a*
    的头像 发表于 12-05 13:42 679次阅读
    如何从<b class='flag-5'>一</b><b class='flag-5'>个</b><b class='flag-5'>简单</b>的数学表达式<b class='flag-5'>创建</b><b class='flag-5'>一</b><b class='flag-5'>个</b>Saber模型?

    【从0开始创建AWTK应用程序创建应用程序并在模拟器运行

    创建工程本篇文章我们来创建一个AWTK程序,也就是HelloWorld程序,它总共包含两
    的头像 发表于 12-01 08:24 458次阅读
    【从0开始<b class='flag-5'>创建</b>AWTK<b class='flag-5'>应用程序</b>】<b class='flag-5'>创建</b><b class='flag-5'>应用程序</b>并在模拟器运行

    RC522刷卡模块原理简介

    RC522 刷卡模块是应用于13.56MHz 非接触式通信中高集成度读写卡系列芯片中的员,是NXP 公司针对“三表”应用推出的款低电压、低成本、体积小的非接触式读写卡芯片。
    的头像 发表于 11-21 09:12 5699次阅读
    <b class='flag-5'>RC522</b>刷卡模块原理简介