Simon Ford / Mbed 2 deprecated displays

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Displays.h Source File

Displays.h

00001 /* mbed Display Library
00002  * Copyright (c) 2007-2009 sford
00003  * Released under the MIT License: http://mbed.org/license/mit
00004  *
00005  * A library for providing a common base class for Text and Graphics
00006  * displays, to provide commonality and simplify porting of new displays 
00007  */
00008 
00009 #ifndef MBED_DISPLAYS_H
00010 #define MBED_DISPLAYS_H
00011 
00012 // Display Base Classes
00013 #include "TextDisplay.h"
00014 #include "GraphicsDisplay.h"
00015 
00016 // Text Displays
00017 #include "TextLCD.h"
00018 #include "Terminal.h"
00019 
00020 // Graphics Displays
00021 #include "MobileLCD.h"
00022 #include "EA_QVGALCD.h"
00023 
00024 #endif