LCD RGB

Dependents:   Prg_TP_CAN

Fork of Dashboard by Karim EL GHARBI

Revision:
0:a0ef433339ff
Child:
1:666c0aa82871
diff -r 000000000000 -r a0ef433339ff Dashboard.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Dashboard.h	Tue Jun 05 07:41:18 2018 +0000
@@ -0,0 +1,11 @@
+#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);
+};
\ No newline at end of file