Frästisch mit elektronischer Höhenverstellung mittels Schrittmotoren.
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.

DiveBitmap.h 690B

12345678910111213141516171819202122232425262728
  1. /*
  2. * DiveBitmap.h
  3. *
  4. * Created on: 14.02.2022
  5. * Author: FSmilari
  6. */
  7. #ifndef IMAGES_DIVEBITMAP_H_
  8. #define IMAGES_DIVEBITMAP_H_
  9. #define imageSide_D 15
  10. // 'Dive', 15x15px
  11. const unsigned char epd_bitmap_Dive [] PROGMEM = {
  12. 0x01, 0x00, 0x07, 0xc0, 0x09, 0x20, 0x13, 0x90, 0x25, 0x48, 0x49, 0x24, 0x53, 0x94, 0xff, 0xfe,
  13. 0x53, 0x94, 0x49, 0x24, 0x25, 0x48, 0x13, 0x90, 0x09, 0x20, 0x07, 0xc0, 0x01, 0x00
  14. };
  15. // Array of all bitmaps for convenience. (Total bytes used to store images in PROGMEM = 48)
  16. //const int epd_bitmap_allArray_LEN = 1;
  17. //const unsigned char* epd_bitmap_allArray[1] = {
  18. // epd_bitmap_Dive
  19. //};
  20. #endif /* IMAGES_DIVEBITMAP_H_ */