Library for the serial LCD-09396 of Sparkfun

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers SerLCDv25.h Source File

SerLCDv25.h

00001 #ifndef SerLCDv25_H
00002 #define SerLCDv25_H
00003 
00004 #include "mbed.h"
00005 
00006 class SerLCDv25 {
00007 
00008 public:
00009     SerLCDv25(PinName rx, PinName tx);
00010     void clear();
00011     void cursorUnderline();
00012     void cursorBlinkingBox();
00013     void cursorClear();
00014     void displayON();
00015     void displayOFF();
00016     void printf(char *string);  //printf(char *string)
00017     void printValue(float *Value);
00018     void putc(char lettre);
00019     void Brightness(int Value);
00020 private:
00021     Serial* device;
00022 };
00023 
00024 
00025 #endif