67 lines
2.3 KiB
C++
67 lines
2.3 KiB
C++
/**
|
|
* @filename : epd4in2.h
|
|
* @brief : Header file for Dual-color e-paper library epd4in2.cpp
|
|
* @author : Yehui from Waveshare
|
|
*
|
|
* Copyright (C) Waveshare August 10 2017
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documnetation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS OR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
|
|
#ifndef EPD4IN7_H
|
|
#define EPD4IN7_H
|
|
|
|
#include <renderer.h>
|
|
|
|
#define DISPLAY_INIT_MODE 0
|
|
#define DISPLAY_INIT_PARTIAL 1
|
|
#define DISPLAY_INIT_FULL 2
|
|
|
|
|
|
// Display resolution
|
|
#define EPD47_WIDTH 960
|
|
#define EPD47_HEIGHT 540
|
|
|
|
|
|
class Epd47 : public Renderer {
|
|
public:
|
|
Epd47(int16_t width, int16_t height);
|
|
int Init(void);
|
|
void drawPixel(int16_t x, int16_t y, uint16_t color);
|
|
void fillScreen(uint16_t color);
|
|
void Updateframe();
|
|
void DisplayInit(int8_t p,int8_t size,int8_t rot,int8_t font);
|
|
void drawFastVLine(int16_t x, int16_t y, int16_t h, uint16_t color);
|
|
void drawFastHLine(int16_t x, int16_t y, int16_t w, uint16_t color);
|
|
void setAddrWindow(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1);
|
|
void pushColors(uint16_t *data, uint16_t len, boolean first);
|
|
uint16_t GetColorFromIndex(uint8_t index);
|
|
private:
|
|
uint16_t width;
|
|
uint16_t height;
|
|
uint16_t xp;
|
|
uint16_t yp;
|
|
uint16_t seta_xp1;
|
|
uint16_t seta_xp2;
|
|
uint16_t seta_yp1;
|
|
uint16_t seta_yp2;
|
|
};
|
|
|
|
#endif /* EPD4IN7_H */
|