epd2in7b.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /**
  2. * @filename : epd2in7b.h
  3. * @brief : Header file for Dual-color e-paper library epd2in7b.cpp
  4. * @author : Yehui from Waveshare
  5. *
  6. * Copyright (C) Waveshare August 10 2017
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documnetation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included in
  16. * all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS OR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. */
  26. #ifndef EPD2IN7B_H
  27. #define EPD2IN7B_H
  28. #include "epdif.h"
  29. // Display resolution
  30. #define EPD_WIDTH 176
  31. #define EPD_HEIGHT 264
  32. // EPD2IN7B commands
  33. #define PANEL_SETTING 0x00
  34. #define POWER_SETTING 0x01
  35. #define POWER_OFF 0x02
  36. #define POWER_OFF_SEQUENCE_SETTING 0x03
  37. #define POWER_ON 0x04
  38. #define POWER_ON_MEASURE 0x05
  39. #define BOOSTER_SOFT_START 0x06
  40. #define DEEP_SLEEP 0x07
  41. #define DATA_START_TRANSMISSION_1 0x10
  42. #define DATA_STOP 0x11
  43. #define DISPLAY_REFRESH 0x12
  44. #define DATA_START_TRANSMISSION_2 0x13
  45. #define PARTIAL_DATA_START_TRANSMISSION_1 0x14
  46. #define PARTIAL_DATA_START_TRANSMISSION_2 0x15
  47. #define PARTIAL_DISPLAY_REFRESH 0x16
  48. #define LUT_FOR_VCOM 0x20
  49. #define LUT_WHITE_TO_WHITE 0x21
  50. #define LUT_BLACK_TO_WHITE 0x22
  51. #define LUT_WHITE_TO_BLACK 0x23
  52. #define LUT_BLACK_TO_BLACK 0x24
  53. #define PLL_CONTROL 0x30
  54. #define TEMPERATURE_SENSOR_COMMAND 0x40
  55. #define TEMPERATURE_SENSOR_CALIBRATION 0x41
  56. #define TEMPERATURE_SENSOR_WRITE 0x42
  57. #define TEMPERATURE_SENSOR_READ 0x43
  58. #define VCOM_AND_DATA_INTERVAL_SETTING 0x50
  59. #define LOW_POWER_DETECTION 0x51
  60. #define TCON_SETTING 0x60
  61. #define TCON_RESOLUTION 0x61
  62. #define SOURCE_AND_GATE_START_SETTING 0x62
  63. #define GET_STATUS 0x71
  64. #define AUTO_MEASURE_VCOM 0x80
  65. #define VCOM_VALUE 0x81
  66. #define VCM_DC_SETTING_REGISTER 0x82
  67. #define PROGRAM_MODE 0xA0
  68. #define ACTIVE_PROGRAM 0xA1
  69. #define READ_OTP_DATA 0xA2
  70. extern const unsigned char lut_vcom_dc[];
  71. extern const unsigned char lut_ww[];
  72. extern const unsigned char lut_bw[];
  73. extern const unsigned char lut_bb[];
  74. extern const unsigned char lut_wb[];
  75. class Epd : EpdIf {
  76. public:
  77. unsigned int width;
  78. unsigned int height;
  79. Epd();
  80. ~Epd();
  81. int Init(void);
  82. void SendCommand(unsigned char command);
  83. void SendData(unsigned char data);
  84. void WaitUntilIdle(void);
  85. void Reset(void);
  86. void SetLut(void);
  87. void TransmitPartial(const unsigned char* buffer_black, const unsigned char* buffer_red, int x, int y, int w, int l);
  88. void TransmitPartialBlack(const unsigned char* buffer_black, int x, int y, int w, int l);
  89. void TransmitPartialRed(const unsigned char* buffer_red, int x, int y, int w, int l);
  90. void RefreshPartial(int x, int y, int w, int l);
  91. void DisplayFrame(const unsigned char* frame_buffer_black, const unsigned char* frame_buffer_red);
  92. void DisplayFrame(void);
  93. void ClearFrame(void);
  94. void Sleep(void);
  95. private:
  96. unsigned int reset_pin;
  97. unsigned int dc_pin;
  98. unsigned int cs_pin;
  99. unsigned int busy_pin;
  100. };
  101. #endif /* EPD2IN7B_H */
  102. /* END OF FILE */