Dependencies:   EthernetNetIf NTPClient_NetServices mbed

Revision:
0:d441275f622f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MyRFID.h	Mon Aug 09 07:01:43 2010 +0000
@@ -0,0 +1,20 @@
+#ifndef MBED_MYRFID_H
+#define MBED_MYRFID_H
+
+#include "mbed.h"
+
+namespace mbed {
+
+class MyRFID {
+public:
+    MyRFID(PinName tx, PinName rx);
+    int readable(void);
+    unsigned int read (void);
+    void baud(int baudrate);
+private:
+    Serial _rfid;
+
+};
+}
+
+#endif