The start of a generic Text Display library to drive multiple types of text display in the same way

Dependencies:   mbed

Committer:
simon
Date:
Wed Nov 25 00:01:31 2009 +0000
Revision:
0:e8a5ca303ebd

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
simon 0:e8a5ca303ebd 1 /* mbed Text Displays Collection Library
simon 0:e8a5ca303ebd 2 * Copyright (c) 2007-2009 sford
simon 0:e8a5ca303ebd 3 * Released under the MIT License: http://mbed.org/license/mit
simon 0:e8a5ca303ebd 4 *
simon 0:e8a5ca303ebd 5 * A library for providing a common base class for Text
simon 0:e8a5ca303ebd 6 * displays, to provide commonality and simplify porting of new displays
simon 0:e8a5ca303ebd 7 */
simon 0:e8a5ca303ebd 8
simon 0:e8a5ca303ebd 9 #ifndef MBED_TEXT_DISPLAYS_H
simon 0:e8a5ca303ebd 10 #define MBED_TEXT_DISPLAYS_H
simon 0:e8a5ca303ebd 11
simon 0:e8a5ca303ebd 12 // Display Base Class
simon 0:e8a5ca303ebd 13 #include "TextDisplay.h"
simon 0:e8a5ca303ebd 14
simon 0:e8a5ca303ebd 15 // Text Displays
simon 0:e8a5ca303ebd 16 #include "TextLCD.h"
simon 0:e8a5ca303ebd 17 #include "Terminal.h"
simon 0:e8a5ca303ebd 18
simon 0:e8a5ca303ebd 19
simon 0:e8a5ca303ebd 20 #endif