v1
Dependents: ACC_LCD_541_Goniometer_Dorian_Folie
Fork of SLCD by
Diff: SLCD.h
- Revision:
- 0:d04758e76d5b
- Child:
- 1:1579bcd31410
diff -r 000000000000 -r d04758e76d5b SLCD.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SLCD.h Tue Jan 14 07:00:15 2014 +0000 @@ -0,0 +1,26 @@ +#ifndef SLCD_H +#define SLCD_H + +#include "mbed.h" + +class SLCD : public Stream { + public: + SLCD(); + + void init(); + void vfnEnablePins(); + + void vfnLCD_Write_Char(char lbValue); + + + uint8_t lcd_alternate_mode; + + virtual int _putc(int c); + virtual int _getc() { + return 0; + } + uint8_t bLCD_CharPosition; + +}; + +#endif \ No newline at end of file