Improved version of Simon Ford's TextDisplay library, with addressing and timing fixes. Supports up to 20x4 text displays.

Revision:
0:2c5bba968d7c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TextDisplays.h	Sun Feb 14 00:28:08 2010 +0000
@@ -0,0 +1,20 @@
+/* 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"
+
+
+#endif