Uses an ID20 RFID Reader to create a tag list with a few functions that include: printing the current list, checking if a tag exists in the list, adding a tag to the list, and deleting a tag from the list

Dependencies:   ID12RFID TextLCD mbed

Code to create an RFID Tag List. Page is located at http://mbed.org/users/memsterjr09/notebook/rfid-tag-list-builder/

Files at this revision

API Documentation at this revision

Comitter:
memsterjr09
Date:
Wed Oct 16 18:10:39 2013 +0000
Parent:
0:fa3fe200c570
Commit message:
Final RFID_Tag_List code

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Wed Oct 16 03:14:09 2013 +0000
+++ b/main.cpp	Wed Oct 16 18:10:39 2013 +0000
@@ -67,6 +67,7 @@
                         flag = true;
                         break;
                     }
+                    if(node->next == NULL) break;
                     node = node->next;
                 }
                 // If the flag was set, then the tag was found in the list, so don't want to do the Not Found part