waveshare_epaper

Waveshare e-paper display shenanigans
git clone git://bsandro.tech/waveshare_epaper
Log | Files | Refs | README

EPD_5in65f.h (2470B)


      1 /*****************************************************************************
      2 * | File      	:   EPD_5in65f.h
      3 * | Author      :   Waveshare team
      4 * | Function    :   5.65inch e-paper
      5 * | Info        :
      6 *----------------
      7 * |	This version:   V1.0
      8 * | Date        :   2020-07-07
      9 * | Info        :
     10 * -----------------------------------------------------------------------------
     11 #
     12 # Permission is hereby granted, free of charge, to any person obtaining a copy
     13 # of this software and associated documnetation files (the "Software"), to deal
     14 # in the Software without restriction, including without limitation the rights
     15 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
     16 # copies of the Software, and to permit persons to  whom the Software is
     17 # furished to do so, subject to the following conditions:
     18 #
     19 # The above copyright notice and this permission notice shall be included in
     20 # all copies or substantial portions of the Software.
     21 #
     22 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     23 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     24 # FITNESS OR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
     25 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
     26 # LIABILITY WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
     27 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
     28 # THE SOFTWARE.
     29 #
     30 ******************************************************************************/
     31 #ifndef __EPD_5IN65F_H__
     32 #define __EPD_5IN65F_H__
     33 
     34 #include "DEV_Config.h"
     35 
     36 /**********************************
     37 Color Index
     38 **********************************/
     39 #define EPD_5IN65F_BLACK   0x0	/// 000
     40 #define EPD_5IN65F_WHITE   0x1	///	001
     41 #define EPD_5IN65F_GREEN   0x2	///	010
     42 #define EPD_5IN65F_BLUE    0x3	///	011
     43 #define EPD_5IN65F_RED     0x4	///	100
     44 #define EPD_5IN65F_YELLOW  0x5	///	101
     45 #define EPD_5IN65F_ORANGE  0x6	///	110
     46 #define EPD_5IN65F_CLEAN   0x7	///	111   unavailable  Afterimage
     47 
     48 #define EPD_5IN65F_WIDTH       600
     49 #define EPD_5IN65F_HEIGHT      448
     50 
     51 void EPD_5IN65F_Clear(UBYTE color);
     52 void EPD_5IN65F_Sleep(void);
     53 void EPD_Init(void);
     54 void EPD_5IN65F_Show7Block(void);
     55 void EPD_5IN65F_Display(const UBYTE *image);
     56 void EPD_5IN65F_Init(void);
     57 void EPD_5IN65F_Display_part(const UBYTE *image, UWORD xstart, UWORD ystart, 
     58 								UWORD image_width, UWORD image_heigh);
     59 #endif
     60 
     61 
     62