Frästisch mit elektronischer Höhenverstellung mittels Schrittmotoren.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

RotateBitmap.h 704B

12345678910111213141516171819202122232425262728
  1. /*
  2. * RotateBitmap.h
  3. *
  4. * Created on: 14.02.2022
  5. * Author: FSmilari
  6. */
  7. #ifndef IMAGES_ROTATEBITMAP_H_
  8. #define IMAGES_ROTATEBITMAP_H_
  9. #define imageSide_R 15
  10. // 'Rotate', 15x15px
  11. const unsigned char epd_bitmap_Rotate [] PROGMEM = {
  12. 0x07, 0xc4, 0x1f, 0xf4, 0x38, 0x3c, 0x70, 0x1c, 0x60, 0x7c, 0xc0, 0x00, 0xc0, 0x00, 0xc0, 0x06,
  13. 0x00, 0x06, 0x00, 0x06, 0x7c, 0x0c, 0x70, 0x1c, 0x78, 0x38, 0x5f, 0xf0, 0x47, 0xc0
  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_Rotate
  19. //};
  20. #endif /* IMAGES_ROTATEBITMAP_H_ */