This class encapsulates all the algorithms required for the displaying strings and time dependent patterns on the lcd.

Dependents:   200943412_QuickClick

Revision:
0:dd78eca4b004
Child:
1:41a1c20a2056
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Display.h	Sat Apr 08 15:01:45 2017 +0000
@@ -0,0 +1,26 @@
+#ifndef DISPLAY_H
+#define DISPLAY_H
+
+#include "mbed.h"
+#include "N5110.h"
+
+class Display
+{
+
+public:
+    Display();
+    ~Display();
+    void init();
+    void drawCircle(N5110 &lcd);
+    
+
+     
+private:
+    void calculateWait();   
+    int _h;
+    float _w;
+    int _a;
+    int _A; 
+
+};
+#endif
\ No newline at end of file