mirror of
https://github.com/IcedRooibos/py32f0-template.git
synced 2025-10-28 16:32:05 -07:00
33 lines
903 B
C
33 lines
903 B
C
/*****************************************************************************
|
|
* | File : EPD_1in64g.h
|
|
* | Author : Waveshare team
|
|
* | Function : 1.64inch e-paper (G)
|
|
* | Info :
|
|
*----------------
|
|
* | This version: V1.0
|
|
* | Date : 2022-07-14
|
|
* | Info :
|
|
* -----------------------------------------------------------------------------
|
|
******************************************************************************/
|
|
#ifndef __EPD_1IN64G_H_
|
|
#define __EPD_1IN64G_H_
|
|
|
|
#include "EPD_Common.h"
|
|
|
|
// Display resolution
|
|
#define EPD_1IN64G_WIDTH 168
|
|
#define EPD_1IN64G_HEIGHT 168
|
|
|
|
// Color
|
|
#define EPD_1IN64G_BLACK 0x0
|
|
#define EPD_1IN64G_WHITE 0x1
|
|
#define EPD_1IN64G_YELLOW 0x2
|
|
#define EPD_1IN64G_RED 0x3
|
|
|
|
void EPD_1IN64G_Init(void);
|
|
void EPD_1IN64G_Clear(UBYTE color);
|
|
void EPD_1IN64G_Display(UBYTE *Image);
|
|
void EPD_1IN64G_Sleep(void);
|
|
|
|
#endif
|