tiz

Dependencies:   TextLCD X_NUCLEO_IKS01A1 func mbed-src mbed

Fork of mas by esproj

func/Display.h

Committer:
herenvarno
Date:
2015-12-13
Revision:
3:4355890e55b4

File content as of revision 3:4355890e55b4:

#include "mbed.h"
#include "TextLCD.h"

#ifndef __DISPLAY_H__
#define __DISPLAY_H__

class Display
{
private:
    TextLCD *__lcd;
public:
    Display();
    void show(char *buffer0, char *buffer1=NULL);    // Display string in 2 rows.
};

#endif  // __DISPLAY_H__