epd1in54b.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /**
  2. * @filename : epd1in54b.h
  3. * @brief : Header file for e-paper display library epd1in54b.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 EPD1IN54B_H
  27. #define EPD1IN54B_H
  28. #include "epdif.h"
  29. // Display resolution
  30. #define EPD_WIDTH 200
  31. #define EPD_HEIGHT 200
  32. // EPD1IN54B 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 PLL_CONTROL 0x30
  46. #define TEMPERATURE_SENSOR_COMMAND 0x40
  47. #define TEMPERATURE_SENSOR_CALIBRATION 0x41
  48. #define TEMPERATURE_SENSOR_WRITE 0x42
  49. #define TEMPERATURE_SENSOR_READ 0x43
  50. #define VCOM_AND_DATA_INTERVAL_SETTING 0x50
  51. #define LOW_POWER_DETECTION 0x51
  52. #define TCON_SETTING 0x60
  53. #define TCON_RESOLUTION 0x61
  54. #define SOURCE_AND_GATE_START_SETTING 0x62
  55. #define GET_STATUS 0x71
  56. #define AUTO_MEASURE_VCOM 0x80
  57. #define VCOM_VALUE 0x81
  58. #define VCM_DC_SETTING_REGISTER 0x82
  59. #define PROGRAM_MODE 0xA0
  60. #define ACTIVE_PROGRAM 0xA1
  61. #define READ_OTP_DATA 0xA2
  62. extern const unsigned char lut_vcom0[];
  63. extern const unsigned char lut_vcom1[];
  64. extern const unsigned char lut_w[];
  65. extern const unsigned char lut_b[];
  66. extern const unsigned char lut_g1[];
  67. extern const unsigned char lut_g2[];
  68. extern const unsigned char lut_red0[];
  69. extern const unsigned char lut_red1[];
  70. class Epd : EpdIf {
  71. public:
  72. unsigned long width;
  73. unsigned long height;
  74. Epd();
  75. ~Epd();
  76. int Init(void);
  77. void SendCommand(unsigned char command);
  78. void SendData(unsigned char data);
  79. void WaitUntilIdle(void);
  80. void Reset(void);
  81. void SetLutBw(void);
  82. void SetLutRed(void);
  83. void DisplayFrame(const unsigned char* frame_buffer_black, const unsigned char* frame_buffer_red);
  84. void Sleep(void);
  85. private:
  86. unsigned int reset_pin;
  87. unsigned int dc_pin;
  88. unsigned int cs_pin;
  89. unsigned int busy_pin;
  90. };
  91. #endif /* EPD1IN54B_H */
  92. /* END OF FILE */