| 123456789101112131415161718192021222324252627 |
- /*
- * water_s.h
- *
- * Created on: 07.01.2026
- * Author: FSmilari
- */
-
- #ifndef IMAGES_WATER_S_H_
- #define IMAGES_WATER_S_H_
-
- // 'water_s', 24x24px
- const unsigned char epd_bitmap_water_s [] PROGMEM = {
- 0x1f, 0x00, 0x00, 0x20, 0x90, 0x00, 0x4e, 0x50, 0x40, 0x91, 0x38, 0xe0, 0x90, 0x39, 0xe0, 0x8e,
- 0x3d, 0xf0, 0x81, 0x3b, 0xf0, 0x91, 0x3b, 0xf0, 0x4e, 0x77, 0xf8, 0x20, 0xf5, 0xf8, 0x1f, 0xf5,
- 0xf8, 0x0f, 0xf6, 0xf8, 0x0f, 0xfb, 0x70, 0x1f, 0xfd, 0xe0, 0x1f, 0xfe, 0x00, 0x17, 0xff, 0x80,
- 0x13, 0xff, 0x80, 0x1b, 0xff, 0x00, 0x09, 0xff, 0x00, 0x0c, 0xfe, 0x00, 0x06, 0x3e, 0x00, 0x03,
- 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
- };
-
- // Array of all bitmaps for convenience. (Total bytes used to store images in PROGMEM = 96)
- //const int epd_bitmap_allArray_LEN = 1;
- //const unsigned char *epd_bitmap_allArray[1] = {
- // epd_bitmap_water_s
- //};
-
-
- #endif /* IMAGES_WATER_S_H_ */
|