tiz

Dependencies:   TextLCD X_NUCLEO_IKS01A1 func mbed-src mbed

Fork of mas by esproj

Revision:
3:4355890e55b4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/func/Display.h	Sun Dec 13 16:36:36 2015 +0000
@@ -0,0 +1,16 @@
+#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__
\ No newline at end of file