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/

Revision:
1:867cf1706b42
Parent:
0:fa3fe200c570
--- 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