You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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