Generates Braille Text and has it display on an RGB LED Matrix

Dependencies:   mbed

Fork of LEDmatrix by Neel Shah

Revision:
2:4db46d73c01e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ledDisplay.h	Fri May 10 17:36:08 2013 +0000
@@ -0,0 +1,16 @@
+#ifndef MBED_LEDDISPLAY_H
+#define MBED_LEDDISPLAY_H
+
+#include "mbed.h"
+
+class ledDisplay {
+public:
+    ledDisplay(PinName pin);
+    void draw_pattern(int pattern);
+    void drawChar(char character);
+    
+private:  
+    DigitalOut _pin;
+};
+ 
+#endif
\ No newline at end of file