Code for RFID Robot

Dependencies:   DebounceIn HTTPClient ID12RFID SDFileSystem TextLCD WiflyInterface iniparser mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers RFID.h Source File

RFID.h

00001 #ifndef  _RFID_H
00002 #define _RFID_H
00003 
00004 #include "mbed.h"
00005 #include "ID12RFID.h"
00006 #include <vector>
00007 #include <algorithm>
00008 #include "LCDText.h"
00009 
00010 extern DebounceIn down, up, select, back;
00011 extern ID12RFID rfid;
00012 
00013 int readTagSequence(std::vector<int>& v);
00014 int readTag();
00015 
00016 #endif