Displays.h
- Committer:
- simon
- Date:
- 2009-09-15
- Revision:
- 0:cc002f2fad97
File content as of revision 0:cc002f2fad97:
/* mbed Display Library
* Copyright (c) 2007-2009 sford
* Released under the MIT License: http://mbed.org/license/mit
*
* A library for providing a common base class for Text and Graphics
* displays, to provide commonality and simplify porting of new displays
*/
#ifndef MBED_DISPLAYS_H
#define MBED_DISPLAYS_H
// Display Base Classes
#include "TextDisplay.h"
#include "GraphicsDisplay.h"
// Text Displays
#include "TextLCD.h"
#include "Terminal.h"
// Graphics Displays
#include "MobileLCD.h"
#include "EA_QVGALCD.h"
#endif
Simon Ford