LCD RGB

Dependents:   Prg_TP_CAN

Fork of Dashboard by Karim EL GHARBI

Dashboard.h

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

File content as of revision 1:666c0aa82871:

#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(signed char *dataToPrint);
    void changeColor(signed char temp);
};