waveshare_epaper

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

EPD_2in9bc.h (4589B)


      1 /*****************************************************************************
      2 * | File      	:   EPD_2in9bc.h
      3 * | Author      :   Waveshare team
      4 * | Function    :   2.9inch e-paper b&c
      5 * | Info        :
      6 *----------------
      7 * |	This version:   V3.0
      8 * | Date        :   2019-06-12
      9 * | Info        :
     10 * -----------------------------------------------------------------------------
     11 * V3.0(2019-06-12):
     12 * 1.Change:
     13 *    EPD_Reset() => EPD_2IN9BC_Reset()
     14 *    EPD_SendCommand() => EPD_2IN9BC_SendCommand()
     15 *    EPD_SendData() => EPD_2IN9BC_SendData()
     16 *    EPD_WaitUntilIdle() => EPD_2IN9BC_ReadBusy()
     17 *    EPD_Init() => EPD_2IN9BC_Init()
     18 *    EPD_Clear() => EPD_2IN9BC_Clear()
     19 *    EPD_Display() => EPD_2IN9BC_Display()
     20 *    EPD_Sleep() => EPD_2IN9BC_Sleep()
     21 * 2.remove commands define:
     22 *    #define PANEL_SETTING                               0x00
     23 *    #define POWER_SETTING                               0x01
     24 *    #define POWER_OFF                                   0x02
     25 *    #define POWER_OFF_SEQUENCE_SETTING                  0x03
     26 *    #define POWER_ON                                    0x04
     27 *    #define POWER_ON_MEASURE                            0x05
     28 *    #define BOOSTER_SOFT_START                          0x06
     29 *    #define DEEP_SLEEP                                  0x07
     30 *    #define DATA_START_TRANSMISSION_1                   0x10
     31 *    #define DATA_STOP                                   0x11
     32 *    #define DISPLAY_REFRESH                             0x12
     33 *    #define DATA_START_TRANSMISSION_2                   0x13
     34 *    #define PLL_CONTROL                                 0x30
     35 *    #define TEMPERATURE_SENSOR_COMMAND                  0x40
     36 *    #define TEMPERATURE_SENSOR_CALIBRATION              0x41
     37 *    #define TEMPERATURE_SENSOR_WRITE                    0x42
     38 *    #define TEMPERATURE_SENSOR_READ                     0x43
     39 *    #define VCOM_AND_DATA_INTERVAL_SETTING              0x50
     40 *    #define LOW_POWER_DETECTION                         0x51
     41 *    #define TCON_SETTING                                0x60
     42 *    #define TCON_RESOLUTION                             0x61
     43 *    #define GET_STATUS                                  0x71
     44 *    #define AUTO_MEASURE_VCOM                           0x80
     45 *    #define VCOM_VALUE                                  0x81
     46 *    #define VCM_DC_SETTING_REGISTER                     0x82
     47 *    #define PARTIAL_WINDOW                              0x90
     48 *    #define PARTIAL_IN                                  0x91
     49 *    #define PARTIAL_OUT                                 0x92
     50 *    #define PROGRAM_MODE                                0xA0
     51 *    #define ACTIVE_PROGRAM                              0xA1
     52 *    #define READ_OTP_DATA                               0xA2
     53 *    #define POWER_SAVING                                0xE3
     54 * -----------------------------------------------------------------------------
     55 * V2.0(2018-11-06):
     56 * 1.Remove:ImageBuff[EPD_HEIGHT * EPD_WIDTH / 8]
     57 * 2.Change:EPD_Display(UBYTE *Image)
     58 *   Need to pass parameters: pointer to cached data
     59 * 3.Change:
     60 *   EPD_RST -> EPD_RST_PIN
     61 *   EPD_DC -> EPD_DC_PIN
     62 *   EPD_CS -> EPD_CS_PIN
     63 *   EPD_BUSY -> EPD_BUSY_PIN
     64 #
     65 # Permission is hereby granted, free of charge, to any person obtaining a copy
     66 # of this software and associated documnetation files (the "Software"), to deal
     67 # in the Software without restriction, including without limitation the rights
     68 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
     69 # copies of the Software, and to permit persons to  whom the Software is
     70 # furished to do so, subject to the following conditions:
     71 #
     72 # The above copyright notice and this permission notice shall be included in
     73 # all copies or substantial portions of the Software.
     74 #
     75 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     76 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     77 # FITNESS OR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
     78 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
     79 # LIABILITY WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
     80 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
     81 # THE SOFTWARE.
     82 #
     83 ******************************************************************************/
     84 #ifndef __EPD_2IN9BC_H_
     85 #define __EPD_2IN9BC_H_
     86 
     87 #include "DEV_Config.h"
     88 
     89 // Display resolution
     90 #define EPD_2IN9BC_WIDTH       128
     91 #define EPD_2IN9BC_HEIGHT      296
     92 
     93 void EPD_2IN9BC_Init(void);
     94 void EPD_2IN9BC_Clear(void);
     95 void EPD_2IN9BC_Display(const UBYTE *blackimage, const UBYTE *ryimage);
     96 void EPD_2IN9BC_Sleep(void);
     97 
     98 #endif