Library for the serial LCD-09396 of Sparkfun

SerLCDv25.h

Committer:
beelin
Date:
2011-08-10
Revision:
0:497632f57657

File content as of revision 0:497632f57657:

#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);
private:
    Serial* device;
};


#endif