| 12345678910111213141516171819202122232425262728 |
- /*
- * RotateBitmap.h
- *
- * Created on: 14.02.2022
- * Author: FSmilari
- */
-
- #ifndef IMAGES_ROTATEBITMAP_H_
- #define IMAGES_ROTATEBITMAP_H_
-
- #define imageSide_R 15
-
- // 'Rotate', 15x15px
- const unsigned char epd_bitmap_Rotate [] PROGMEM = {
- 0x07, 0xc4, 0x1f, 0xf4, 0x38, 0x3c, 0x70, 0x1c, 0x60, 0x7c, 0xc0, 0x00, 0xc0, 0x00, 0xc0, 0x06,
- 0x00, 0x06, 0x00, 0x06, 0x7c, 0x0c, 0x70, 0x1c, 0x78, 0x38, 0x5f, 0xf0, 0x47, 0xc0
- };
-
- // Array of all bitmaps for convenience. (Total bytes used to store images in PROGMEM = 48)
- //const int epd_bitmap_allArray_LEN = 1;
- //const unsigned char* epd_bitmap_allArray[1] = {
- // epd_bitmap_Rotate
- //};
-
-
-
-
- #endif /* IMAGES_ROTATEBITMAP_H_ */
|