Code for RFID Robot

Dependencies:   DebounceIn HTTPClient ID12RFID SDFileSystem TextLCD WiflyInterface iniparser mbed

LCDText.h

Committer:
4180skrw
Date:
2013-12-10
Revision:
0:9fd64882c5aa

File content as of revision 0:9fd64882c5aa:

#ifndef _LCDTEST_H
#define _LCDTEST_H

#include "mbed.h"
#include "TextLCD.h"
#include "DebounceIn.h"

extern DigitalOut myled1, myled2, myled3, myled4;
extern TextLCD mylcd;
extern DebounceIn down, up, select, back;
extern Serial device;

void clearLCD();
void printLCD(const char* string1, const char* string2);
int displayMenu(const char* menuTitle, const char** menuOptions, int numOptions);

#endif