|
CupRFIDReaderResearch
ResearchFeatures of the ID-12LA
ID-12LA RFID reader, above Circuit Diagram
Block Diagram
AlternativesA. Bluetooth
Pseudo CodecheckSum_TAG1 = //sum of ID of tag 1;
checkSum_TAG2 = //sum of ID of tag 2;
tagDATA = 0;
while(1)
{
//check for Tag detected
if(tag_Deteceted ==1)
{
tagDATA = //data from tag
int tagDataSum = checksum(TagDATA)//sum up ASCII bits from tag data
if(tagDataSum == checkSum_TAG1)
{
//send value 1 to Main Code
tagDATA = 0;
if(tagDataSum == checkSum_Tag2)
{
//send value 2 to Main Code
tagDATA = 0;
}
}
}
References1. a1ronzo, “RFID USB Starter Kit Quick Start Guide”, online January 12, 2011, https://www.sparkfun.com/tutorials/243 (Accessed 23 September 2013) 2. Indika, “Difference between RFID and Bluetooth”, online, May 18, 2011, http://www.differencebetween.com/difference-between-rfid-and-vs-bluetooth/ (Accessed Sept 22, 2013) 3. Vassilis Kostakos, “The privacy implications of Bluetooth”, M.S Thesis, University of Madeira / Carnegie Mellon University | |