
Generates Braille Text and has it display on an RGB LED Matrix
Fork of LEDmatrix by
BrailleAlphabet.h
- Committer:
- mlabu11
- Date:
- 2013-05-10
- Revision:
- 2:4db46d73c01e
- Parent:
- 1:0ca4d6b1e3d7
File content as of revision 2:4db46d73c01e:
#ifndef MBED_BRAILLEALPHABET_H #define MBED_BRAILLEALPHABET_H #include "mbed.h" class BrailleAlphabet { public: BrailleAlphabet(PinName pin); int matchCharacter(char character); bool isNumber(char c); private: DigitalOut _pin; }; #endif