17 GxEPD2_EPD(cs, dc, rst, busy, LOW, 10000000, WIDTH, HEIGHT, panel, hasColor, hasPartialUpdate, hasFastPartialUpdate)
32 _writeScreenBuffer(0x13, value);
39 _writeScreenBuffer(0x10, value);
42void GxEPD2_154_M10::_writeScreenBuffer(uint8_t command, uint8_t value)
45 for (uint32_t i = 0; i < uint32_t(
WIDTH) * uint32_t(
HEIGHT) / 8; i++)
53 _writeImage(0x13, bitmap, x, y, w, h, invert, mirror_y, pgm);
56void GxEPD2_154_M10::_writeImage(uint8_t command,
const uint8_t bitmap[], int16_t x, int16_t y, int16_t w, int16_t h,
bool invert,
bool mirror_y,
bool pgm)
60 int16_t wb = (w + 7) / 8;
63 int16_t x1 = x < 0 ? 0 : x;
64 int16_t y1 = y < 0 ? 0 : y;
65 int16_t w1 = x + w < int16_t(
WIDTH) ? w : int16_t(
WIDTH) - x;
66 int16_t h1 = y + h < int16_t(
HEIGHT) ? h : int16_t(
HEIGHT) - y;
71 if ((w1 <= 0) || (h1 <= 0))
return;
74 _setPartialRamArea(x1, y1, w1, h1);
76 for (int16_t i = 0; i < h1; i++)
78 for (int16_t j = 0; j < w1 / 8; j++)
82 int16_t idx = mirror_y ? j + dx / 8 + ((h - 1 - (i + dy))) * wb : j + dx / 8 + (i + dy) * wb;
85#if defined(__AVR) || defined(ESP8266) || defined(ESP32)
86 data = pgm_read_byte(&bitmap[idx]);
95 if (invert) data = ~data;
104 int16_t x, int16_t y, int16_t w, int16_t h,
bool invert,
bool mirror_y,
bool pgm)
106 _writeImagePart(0x13, bitmap, x_part, y_part, w_bitmap, h_bitmap, x, y, w, h, invert, mirror_y, pgm);
109void GxEPD2_154_M10::_writeImagePart(uint8_t command,
const uint8_t bitmap[], int16_t x_part, int16_t y_part, int16_t w_bitmap, int16_t h_bitmap,
110 int16_t x, int16_t y, int16_t w, int16_t h,
bool invert,
bool mirror_y,
bool pgm)
114 if ((w_bitmap < 0) || (h_bitmap < 0) || (w < 0) || (h < 0))
return;
115 if ((x_part < 0) || (x_part >= w_bitmap))
return;
116 if ((y_part < 0) || (y_part >= h_bitmap))
return;
117 int16_t wb_bitmap = (w_bitmap + 7) / 8;
118 x_part -= x_part % 8;
119 w = w_bitmap - x_part < w ? w_bitmap - x_part : w;
120 h = h_bitmap - y_part < h ? h_bitmap - y_part : h;
122 w = 8 * ((w + 7) / 8);
123 int16_t x1 = x < 0 ? 0 : x;
124 int16_t y1 = y < 0 ? 0 : y;
125 int16_t w1 = x + w < int16_t(
WIDTH) ? w : int16_t(
WIDTH) - x;
126 int16_t h1 = y + h < int16_t(
HEIGHT) ? h : int16_t(
HEIGHT) - y;
131 if ((w1 <= 0) || (h1 <= 0))
return;
134 _setPartialRamArea(x1, y1, w1, h1);
136 for (int16_t i = 0; i < h1; i++)
138 for (int16_t j = 0; j < w1 / 8; j++)
142 int16_t idx = mirror_y ? x_part / 8 + j + dx / 8 + ((h_bitmap - 1 - (y_part + i + dy))) * wb_bitmap : x_part / 8 + j + dx / 8 + (y_part + i + dy) * wb_bitmap;
145#if defined(__AVR) || defined(ESP8266) || defined(ESP32)
146 data = pgm_read_byte(&bitmap[idx]);
155 if (invert) data = ~data;
163void GxEPD2_154_M10::writeImage(
const uint8_t* black,
const uint8_t* color, int16_t x, int16_t y, int16_t w, int16_t h,
bool invert,
bool mirror_y,
bool pgm)
167 writeImage(black, x, y, w, h, invert, mirror_y, pgm);
172 int16_t x, int16_t y, int16_t w, int16_t h,
bool invert,
bool mirror_y,
bool pgm)
176 writeImagePart(black, x_part, y_part, w_bitmap, h_bitmap, x, y, w, h, invert, mirror_y, pgm);
180void GxEPD2_154_M10::writeNative(
const uint8_t* data1,
const uint8_t* data2, int16_t x, int16_t y, int16_t w, int16_t h,
bool invert,
bool mirror_y,
bool pgm)
184 writeImage(data1, x, y, w, h, invert, mirror_y, pgm);
190 writeImage(bitmap, x, y, w, h, invert, mirror_y, pgm);
192 writeImage(bitmap, x, y, w, h, invert, mirror_y, pgm);
196 int16_t x, int16_t y, int16_t w, int16_t h,
bool invert,
bool mirror_y,
bool pgm)
198 writeImagePart(bitmap, x_part, y_part, w_bitmap, h_bitmap, x, y, w, h, invert, mirror_y, pgm);
200 writeImagePart(bitmap, x_part, y_part, w_bitmap, h_bitmap, x, y, w, h, invert, mirror_y, pgm);
203void GxEPD2_154_M10::drawImage(
const uint8_t* black,
const uint8_t* color, int16_t x, int16_t y, int16_t w, int16_t h,
bool invert,
bool mirror_y,
bool pgm)
207 drawImage(black, x, y, w, h, invert, mirror_y, pgm);
212 int16_t x, int16_t y, int16_t w, int16_t h,
bool invert,
bool mirror_y,
bool pgm)
216 drawImagePart(black, x_part, y_part, w_bitmap, h_bitmap, x, y, w, h, invert, mirror_y, pgm);
220void GxEPD2_154_M10::drawNative(
const uint8_t* data1,
const uint8_t* data2, int16_t x, int16_t y, int16_t w, int16_t h,
bool invert,
bool mirror_y,
bool pgm)
224 drawImage(data1, x, y, w, h, invert, mirror_y, pgm);
243 int16_t w1 = x < 0 ? w + x : w;
244 int16_t h1 = y < 0 ? h + y : h;
245 int16_t x1 = x < 0 ? 0 : x;
246 int16_t y1 = y < 0 ? 0 : y;
247 w1 = x1 + w1 < int16_t(
WIDTH) ? w1 : int16_t(
WIDTH) - x1;
248 h1 = y1 + h1 < int16_t(
HEIGHT) ? h1 : int16_t(
HEIGHT) - y1;
249 if ((w1 <= 0) || (h1 <= 0))
return;
252 if (w1 % 8 > 0) w1 += 8 - w1 % 8;
256 _setPartialRamArea(x1, y1, w1, h1);
277void GxEPD2_154_M10::_setPartialRamArea(uint16_t x, uint16_t y, uint16_t w, uint16_t h)
279 uint16_t xe = (x + w - 1) | 0x0007;
280 uint16_t ye = y + h - 1;
295void GxEPD2_154_M10::_PowerOn()
305void GxEPD2_154_M10::_PowerOff()
316void GxEPD2_154_M10::_InitDisplay()
338const unsigned char GxEPD2_154_M10::lut_20_vcomDC_partial[]
PROGMEM =
343const unsigned char GxEPD2_154_M10::lut_21_ww_partial[]
PROGMEM =
348const unsigned char GxEPD2_154_M10::lut_22_bw_partial[]
PROGMEM =
354const unsigned char GxEPD2_154_M10::lut_23_wb_partial[]
PROGMEM =
360const unsigned char GxEPD2_154_M10::lut_24_bb_partial[]
PROGMEM =
365void GxEPD2_154_M10::_Init_Full()
372void GxEPD2_154_M10::_Init_Part()
390 _writeDataPGM(lut_20_vcomDC_partial,
sizeof(lut_20_vcomDC_partial), 36 -
sizeof(lut_20_vcomDC_partial));
392 _writeDataPGM(lut_21_ww_partial,
sizeof(lut_21_ww_partial), 36 -
sizeof(lut_21_ww_partial));
394 _writeDataPGM(lut_22_bw_partial,
sizeof(lut_22_bw_partial), 36 -
sizeof(lut_22_bw_partial));
396 _writeDataPGM(lut_23_wb_partial,
sizeof(lut_23_wb_partial), 36 -
sizeof(lut_23_wb_partial));
398 _writeDataPGM(lut_24_bb_partial,
sizeof(lut_24_bb_partial), 36 -
sizeof(lut_24_bb_partial));
404void GxEPD2_154_M10::_Update_Full()
410void GxEPD2_154_M10::_Update_Part()
const unsigned char GxEPD2_154_M10::lut_20_vcomDC_partial[] PROGMEM
static const uint16_t power_off_time
static const bool hasFastPartialUpdate
void drawImage(const uint8_t bitmap[], int16_t x, int16_t y, int16_t w, int16_t h, bool invert=false, bool mirror_y=false, bool pgm=false)
static const uint16_t HEIGHT
void drawImagePart(const uint8_t bitmap[], int16_t x_part, int16_t y_part, int16_t w_bitmap, int16_t h_bitmap, int16_t x, int16_t y, int16_t w, int16_t h, bool invert=false, bool mirror_y=false, bool pgm=false)
static const uint16_t WIDTH
void writeScreenBuffer(uint8_t value=0xFF)
static const uint16_t power_on_time
static const uint16_t full_refresh_time
void writeImagePart(const uint8_t bitmap[], int16_t x_part, int16_t y_part, int16_t w_bitmap, int16_t h_bitmap, int16_t x, int16_t y, int16_t w, int16_t h, bool invert=false, bool mirror_y=false, bool pgm=false)
void clearScreen(uint8_t value=0xFF)
void writeScreenBufferAgain(uint8_t value=0xFF)
void writeNative(const uint8_t *data1, const uint8_t *data2, int16_t x, int16_t y, int16_t w, int16_t h, bool invert=false, bool mirror_y=false, bool pgm=false)
void drawNative(const uint8_t *data1, const uint8_t *data2, int16_t x, int16_t y, int16_t w, int16_t h, bool invert=false, bool mirror_y=false, bool pgm=false)
void refresh(bool partial_update_mode=false)
static const uint16_t partial_refresh_time
GxEPD2_154_M10(int16_t cs, int16_t dc, int16_t rst, int16_t busy)
void writeImage(const uint8_t bitmap[], int16_t x, int16_t y, int16_t w, int16_t h, bool invert=false, bool mirror_y=false, bool pgm=false)
void _writeCommand(uint8_t c)
void _writeData(uint8_t d)
void _waitWhileBusy(const char *comment=0, uint16_t busy_time=5000)
void _writeDataPGM(const uint8_t *data, uint16_t n, int16_t fill_with_zeroes=0)