LCD display, Teraterm display

Dependencies:   ID12RFID ID12RFID_HelloWorld TextLCD mbed

Fork of ID12RFID_HelloWorld by Simon Ford

main.cpp

Committer:
simon
Date:
2010-06-03
Revision:
0:df71eb8a3c0b
Child:
1:2c017f3d2d04

File content as of revision 0:df71eb8a3c0b:

// Print RFID tag numbers

#include "mbed.h"
#include "ID12RFID.h"

ID12RFID rfid(p10); // uart rx

int main() {
    while(1) {
        if(rfid.readable()) {
            printf("RFID Tag number : %d\n", rfid.read());             
        }
    }
}