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. * gear.h
  3. *
  4. * Created on: 07.01.2026
  5. * Author: FSmilari
  6. */
  7. #ifndef IMAGES_GEAR_H_
  8. #define IMAGES_GEAR_H_
  9. // 'gear', 24x24px
  10. const unsigned char epd_bitmap_gear [] PROGMEM = {
  11. 0x00, 0x3c, 0x00, 0x00, 0x24, 0x00, 0x00, 0x24, 0x00, 0x0e, 0x42, 0x70, 0x11, 0xc3, 0x88, 0x10,
  12. 0x00, 0x08, 0x10, 0x00, 0x08, 0x08, 0x00, 0x10, 0x08, 0x3c, 0x10, 0x18, 0x42, 0x18, 0xe0, 0x81,
  13. 0x07, 0x80, 0x81, 0x01, 0x80, 0x81, 0x01, 0xe0, 0x81, 0x07, 0x18, 0x42, 0x18, 0x08, 0x3c, 0x10,
  14. 0x08, 0x00, 0x10, 0x10, 0x00, 0x08, 0x10, 0x00, 0x08, 0x11, 0xc3, 0x88, 0x0e, 0x42, 0x70, 0x00,
  15. 0x24, 0x00, 0x00, 0x24, 0x00, 0x00, 0x3c, 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_gear
  21. //};
  22. #endif /* IMAGES_GEAR_H_ */