Library for the serial LCD-09396 of Sparkfun

Dependents:   M5VelocityALLCODE

Fork of SerLCDv25 by Beeli Nick

SerLCDv25.h

Committer:
Mach5
Date:
2013-04-05
Revision:
1:65590e1ed8ed
Parent:
0:497632f57657

File content as of revision 1:65590e1ed8ed:

#ifndef SerLCDv25_H
#define SerLCDv25_H

#include "mbed.h"

class SerLCDv25 {

public:
    SerLCDv25(PinName rx, PinName tx);
    void clear();
    void cursorUnderline();
    void cursorBlinkingBox();
    void cursorClear();
    void displayON();
    void displayOFF();
    void printf(char *string);  //printf(char *string)
    void printValue(float *Value);
    void putc(char lettre);
    void Brightness(int Value);
    void splash();
private:
    Serial* device;
};
void clear(void);
void move_cursor(int,int);

#endif