Distanz-/Tiefenmesser mit JSN-SR40T
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627
  1. /*
  2. * water.h
  3. *
  4. * Created on: 07.01.2026
  5. * Author: FSmilari
  6. */
  7. #ifndef IMAGES_WATER_H_
  8. #define IMAGES_WATER_H_
  9. // 'water', 24x24px
  10. const unsigned char epd_bitmap_water [] PROGMEM = {
  11. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x40, 0x00, 0x60, 0xe0, 0x00, 0xf1, 0xe0, 0x01,
  12. 0xf1, 0xf0, 0x01, 0xfb, 0xf0, 0x03, 0xfb, 0xf0, 0x03, 0xf7, 0xf8, 0x07, 0xf5, 0xf8, 0x07, 0xf5,
  13. 0xf8, 0x0f, 0xf6, 0xf8, 0x0f, 0xfb, 0x70, 0x1f, 0xfd, 0xe0, 0x1f, 0xfe, 0x00, 0x17, 0xff, 0x80,
  14. 0x13, 0xff, 0x80, 0x1b, 0xff, 0x00, 0x09, 0xff, 0x00, 0x0c, 0xfe, 0x00, 0x06, 0x3e, 0x00, 0x03,
  15. 0xf8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
  16. };
  17. // Array of all bitmaps for convenience. (Total bytes used to store images in PROGMEM = 96)
  18. //const int epd_bitmap_allArray_LEN = 1;
  19. //const unsigned char* epd_bitmap_allArray[1] = {
  20. // epd_bitmap_water
  21. //};
  22. #endif /* IMAGES_WATER_H_ */