Code for RFID Robot

Dependencies:   DebounceIn HTTPClient ID12RFID SDFileSystem TextLCD WiflyInterface iniparser mbed

Committer:
4180skrw
Date:
Tue Dec 10 02:17:48 2013 +0000
Revision:
0:9fd64882c5aa
initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
4180skrw 0:9fd64882c5aa 1 #ifndef _LCDTEST_H
4180skrw 0:9fd64882c5aa 2 #define _LCDTEST_H
4180skrw 0:9fd64882c5aa 3
4180skrw 0:9fd64882c5aa 4 #include "mbed.h"
4180skrw 0:9fd64882c5aa 5 #include "TextLCD.h"
4180skrw 0:9fd64882c5aa 6 #include "DebounceIn.h"
4180skrw 0:9fd64882c5aa 7
4180skrw 0:9fd64882c5aa 8 extern DigitalOut myled1, myled2, myled3, myled4;
4180skrw 0:9fd64882c5aa 9 extern TextLCD mylcd;
4180skrw 0:9fd64882c5aa 10 extern DebounceIn down, up, select, back;
4180skrw 0:9fd64882c5aa 11 extern Serial device;
4180skrw 0:9fd64882c5aa 12
4180skrw 0:9fd64882c5aa 13 void clearLCD();
4180skrw 0:9fd64882c5aa 14 void printLCD(const char* string1, const char* string2);
4180skrw 0:9fd64882c5aa 15 int displayMenu(const char* menuTitle, const char** menuOptions, int numOptions);
4180skrw 0:9fd64882c5aa 16
4180skrw 0:9fd64882c5aa 17 #endif