This is a *VERY* Rough library for translating binary representations of grade 1 braille into ASCII strings.

Revision:
4:0ddc5208706e
Parent:
3:36f07cfb3fe1
Child:
7:bd06bf7ddafb
--- a/Braille_In.cpp	Fri Oct 12 05:42:44 2012 +0000
+++ b/Braille_In.cpp	Fri Oct 12 05:56:01 2012 +0000
@@ -4,7 +4,7 @@
 
 char* BrailleInput::translateBraille(char* input, int numChars)
 {
-    char output[numChars+1];
+    
     bool NextCaps=false;
     for (int i=0;i<numChars;i++)
     {
@@ -17,7 +17,7 @@
 
 char* BrailleInput::translateBraille(const char* input, int numChars)
 {
-    char output[numChars+1];
+    
     bool NextCaps=false;
     for (int i=0;i<numChars;i++)
     {