mirror of
https://github.com/javl/image2cpp.git
synced 2026-09-11 09:03:04 +00:00
16 lines
853 B
Plaintext
16 lines
853 B
Plaintext
// 'test_pattern', 32x24px
|
|
const uint8_t epd_bitmap_test_pattern [] = {
|
|
0x33, 0x33, 0x00, 0xff, 0x33, 0x33, 0x00, 0xff, 0xcc, 0xcc, 0x00, 0xff, 0xcc, 0xcc, 0x00, 0xff,
|
|
0x33, 0x33, 0x00, 0xff, 0x33, 0x33, 0x00, 0xff, 0xcc, 0xcc, 0x00, 0xff, 0xcc, 0xcc, 0x00, 0xff,
|
|
0x33, 0x33, 0x00, 0xff, 0x33, 0x33, 0x00, 0xff, 0xcc, 0xcc, 0x00, 0xff, 0xcc, 0xcc, 0x00, 0xff,
|
|
0x0f, 0x0f, 0x7f, 0xff, 0x0f, 0x0f, 0xbf, 0xff, 0x0f, 0x0f, 0xdf, 0xff, 0x0f, 0x0f, 0xef, 0xff,
|
|
0x0f, 0x0f, 0xf7, 0xff, 0x0f, 0x0f, 0xfb, 0xff, 0x0f, 0x0f, 0xfd, 0xff, 0x0f, 0x0f, 0xfe, 0xff,
|
|
0x0f, 0x0f, 0xff, 0x7f, 0x0f, 0x0f, 0xff, 0xbf, 0x0f, 0x0f, 0xff, 0xdf, 0x0f, 0x0f, 0xff, 0xee
|
|
};
|
|
|
|
// Array of all bitmaps for convenience. (Total bytes used to store images = 112)
|
|
const int epd_bitmap_allArray_LEN = 1;
|
|
const uint8_t* epd_bitmap_allArray[1] = {
|
|
epd_bitmap_test_pattern
|
|
};
|