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

Dependents:   200943412_QuickClick

Display.h

Committer:
domkay97
Date:
2017-04-08
Revision:
0:dd78eca4b004
Child:
1:41a1c20a2056

File content as of revision 0:dd78eca4b004:

#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