Code for RFID Robot

Dependencies:   DebounceIn HTTPClient ID12RFID SDFileSystem TextLCD WiflyInterface iniparser mbed

RFID.h

Committer:
4180skrw
Date:
2013-12-10
Revision:
0:9fd64882c5aa

File content as of revision 0:9fd64882c5aa:

#ifndef  _RFID_H
#define _RFID_H

#include "mbed.h"
#include "ID12RFID.h"
#include <vector>
#include <algorithm>
#include "LCDText.h"

extern DebounceIn down, up, select, back;
extern ID12RFID rfid;

int readTagSequence(std::vector<int>& v);
int readTag();

#endif