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

Dependencies:   TFTLCD

Dependents:   Capstone

Fork of capstone_display by James Moffat

display.h

Committer:
jmoffat
Date:
2014-03-24
Revision:
0:6846cd4549ba
Child:
1:a6f341df1ef1

File content as of revision 0:6846cd4549ba:

#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);
};