LCD RGB

Dependents:   Prg_TP_CAN

Fork of Dashboard by Karim EL GHARBI

Dashboard.h

Committer:
KEG
Date:
2018-06-05
Revision:
0:a0ef433339ff
Child:
1:666c0aa82871

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);
};