mirror of
https://github.com/paperdash/device-epd.git
synced 2024-11-10 07:10:32 +00:00
13 lines
241 B
C
13 lines
241 B
C
|
#ifndef IMAGE_H
|
||
|
#define IMAGE_H
|
||
|
|
||
|
#include <Arduino.h>
|
||
|
|
||
|
#include "imageWBMP.h"
|
||
|
#include "imagePNG.h"
|
||
|
|
||
|
void ImageNew(int x, int y, int w, int h, bool dithering);
|
||
|
void ImageWriteBuffer(uint8_t buff[], size_t c);
|
||
|
void ImageFlushBuffer();
|
||
|
|
||
|
#endif
|