Give me permissions so I don't have to fork.

Dependencies:   TFTLCD

Dependents:   Capstone

Fork of capstone_display by James Moffat

Revision:
0:6846cd4549ba
Child:
1:a6f341df1ef1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/display.h	Mon Mar 24 23:59:30 2014 +0000
@@ -0,0 +1,20 @@
+#include "st7735.h"
+
+class display
+{
+    ST7735_LCD *lcd;
+    char *strength;
+    char *dist;
+    
+    public:
+    
+    display(ST7735_LCD *disp);
+    
+
+    void print(char *str);
+    void printrb(const char *str);
+    
+    void blinktext(const char *str);
+    
+    void displayStr(double strength);
+};
\ No newline at end of file