this locks like shit

Dependencies:   MenuLCD mbed

Fork of MenuLCD_copy by Vinícius Alves

Revision:
0:92357d1220f3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/menbed/include/menbedDisplay.h	Fri May 19 13:07:52 2017 +0000
@@ -0,0 +1,15 @@
+#ifndef _MENBEDDISPLAY_H_
+#define _MENBEDDISPLAY_H_
+
+#include "mbed.h"
+
+class MenbedDisplay {
+public:
+    virtual bool writeLine (const char *line, uint8_t row) = 0;
+    virtual void showUpArrow (bool show) = 0;
+    virtual void showDownArrow (bool show) = 0;
+    virtual uint8_t getLines (void) = 0;
+    virtual uint8_t getLineLength (void) = 0;
+};
+
+#endif /* _MENBEDDISPLAY_H_ */
\ No newline at end of file