waveshare_epaper

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

EPD_1in54c.h (4388B)


      1 /*****************************************************************************
      2 * | File      	:   EPD_1in54c.h
      3 * | Author      :   Waveshare team
      4 * | Function    :   1.54inch e-paper c
      5 * | Info        :
      6 *----------------
      7 * |	This version:   V3.1
      8 * | Date        :   2019-06-12
      9 * | Info        :
     10 * -----------------------------------------------------------------------------
     11 * V3.1(2019-06-12):
     12 * 1.Change:
     13 *    EPD_Reset() => EPD_1IN54C_Reset()
     14 *    EPD_SendCommand() => EPD_1IN54C_SendCommand()
     15 *    EPD_SendData() => EPD_1IN54C_SendData()
     16 *    EPD_WaitUntilIdle() => EPD_1IN54C_ReadBusy()
     17 *    EPD_Init() => EPD_1IN54C_Init()
     18 *    EPD_Clear() => EPD_1IN54C_Clear()
     19 *    EPD_Display() => EPD_1IN54C_Display()
     20 *    EPD_Sleep() => EPD_1IN54C_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 SOURCE_AND_GATE_START_SETTING               0x62
     44 *   #define GET_STATUS                                  0x71
     45 *   #define AUTO_MEASURE_VCOM                           0x80
     46 *   #define VCOM_VALUE                                  0x81
     47 *   #define VCM_DC_SETTING_REGISTER                     0x82
     48 *   #define PROGRAM_MODE                                0xA0
     49 *   #define ACTIVE_PROGRAM                              0xA1
     50 *   #define READ_OTP_DATA                               0xA2
     51 * -----------------------------------------------------------------------------
     52 * V2.0(2018-11-14):
     53 * 1.Remove:ImageBuff[EPD_1IN54C_HEIGHT * EPD_1IN54C_WIDTH / 8]
     54 * 2.Change:EPD_Display(UBYTE *Image)
     55 *   Need to pass parameters: pointer to cached data
     56 * 3.Change:
     57 *   EPD_RST -> EPD_RST_PIN
     58 *   EPD_DC -> EPD_DC_PIN
     59 *   EPD_CS -> EPD_CS_PIN
     60 *   EPD_BUSY -> EPD_BUSY_PIN
     61 #
     62 # Permission is hereby granted, free of charge, to any person obtaining a copy
     63 # of this software and associated documnetation files (the "Software"), to deal
     64 # in the Software without restriction, including without limitation the rights
     65 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
     66 # copies of the Software, and to permit persons to  whom the Software is
     67 # furished to do so, subject to the following conditions:
     68 #
     69 # The above copyright notice and this permission notice shall be included in
     70 # all copies or substantial portions of the Software.
     71 #
     72 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     73 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     74 # FITNESS OR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
     75 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
     76 # LIABILITY WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
     77 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
     78 # THE SOFTWARE.
     79 #
     80 ******************************************************************************/
     81 #ifndef __EPD_1IN54C_H_
     82 #define __EPD_1IN54C_H_
     83 
     84 #include "DEV_Config.h"
     85 
     86 // Display resolution
     87 #define EPD_1IN54C_WIDTH       152
     88 #define EPD_1IN54C_HEIGHT      152
     89 
     90 void EPD_1IN54C_Init(void);
     91 void EPD_1IN54C_Clear(void);
     92 void EPD_1IN54C_Display(const UBYTE *blackimage, const UBYTE *redimage);
     93 void EPD_1IN54C_Sleep(void);
     94 
     95 #endif