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.

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