Frästisch mit elektronischer Höhenverstellung mittels Schrittmotoren.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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_ */