Library for the serial LCD-09396 of Sparkfun

Dependents:   M5VelocityALLCODE

Fork of SerLCDv25 by Beeli Nick

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     void splash();
00021 private:
00022     Serial* device;
00023 };
00024 void clear(void);
00025 void move_cursor(int,int);
00026 
00027 #endif