This is a *VERY* Rough library for translating binary representations of grade 1 braille into ASCII strings.
Revision 9:cc189ce99a98, committed 2012-10-12
- Comitter:
- aganger3
- Date:
- Fri Oct 12 07:22:30 2012 +0000
- Parent:
- 8:4e65648a50cd
- Commit message:
- Changed space mapping from 0 to 127 since 0 is a string terminator. D'oh!
Changed in this revision
Braille_In.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 4e65648a50cd -r cc189ce99a98 Braille_In.cpp --- a/Braille_In.cpp Fri Oct 12 07:07:43 2012 +0000 +++ b/Braille_In.cpp Fri Oct 12 07:22:30 2012 +0000 @@ -136,7 +136,9 @@ out=' '; NextCaps=true; break; - + case 127: + out=' '; + break; default: out=' ';