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-04-03
Revision:
1:a6f341df1ef1
Parent:
0:6846cd4549ba
Child:
2:c3231b95aff0

File content as of revision 1:a6f341df1ef1:

#include "st7735.h"

class display
{
    ST7735_LCD *lcd;
    char *debugstr;
    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(char *newStrength);
    
    void displayDist(char * newDist);
};