A TextDisplay driver that supports graphical displays using on of the SED133x conrtrolers. Allows stdout and stderr output to be redirected to the display.

TextDisplays.h

Committer:
llagendijk
Date:
2011-01-29
Revision:
6:2f8aed3d2be4
Parent:
0:9e72c57b16fd

File content as of revision 6:2f8aed3d2be4:

/* mbed Text Displays Collection 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 
 * displays, to provide commonality and simplify porting of new displays 
 */

#ifndef MBED_TEXT_DISPLAYS_H
#define MBED_TEXT_DISPLAYS_H

// Display Base Class
#include "TextDisplay.h"

// Text Displays
#include "TextLCD.h"
#include "Terminal.h"
#include "Sed133xLCD.h"


#endif