Harry Chen / EPD_GDEW075T8

Dependents:   EInkTest

GDEW075T8.h

Committer:
HarryChen
Date:
2018-10-15
Revision:
3:8129e159831b
Parent:
2:73f957691c31
Child:
4:a038b8b2ee11

File content as of revision 3:8129e159831b:

#ifndef __GDEW075T8_H
#define __GDEW075T8_H 

#include "PixelSource.h"

namespace GDE {
    
    const int BUFFER_SIZE = 640 * 384 / 8;

    void setup(DigitalOut *nCS, DigitalOut *nDC,
                DigitalOut *nRST, DigitalIn *ready, SPI *spi);

    void start();
    void stop();
    
    void showPixels(PixelSource &source, bool needRefresh = true);

}

#endif