LCD RGB

Dashboard.h

Committer:
KEG
Date:
2018-06-05
Revision:
0:a0ef433339ff

File content as of revision 0:a0ef433339ff:

#include "mbed.h"
#include "Grove_LCD_RGB_Backlight.h"

class Dashboard : public Grove_LCD_RGB_Backlight
{
    public:
    //Contructor
    Dashboard(PinName sda, PinName scl);
    //print T°C + P[hPa] + H[%]
    void printData(char *dataToPrint);
};