Distanz-/Tiefenmesser mit JSN-SR40T
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

ruler.h 1.0KB

1234567891011121314151617181920212223242526272829
  1. /*
  2. * ruler.h
  3. *
  4. * Created on: 07.01.2026
  5. * Author: FSmilari
  6. */
  7. #ifndef IMAGES_RULER_H_
  8. #define IMAGES_RULER_H_
  9. // 'Measure_25', 25x25px
  10. const unsigned char epd_bitmap_Measure_25 [] PROGMEM = {
  11. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  12. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  13. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  14. 0xaa, 0xaa, 0xaa, 0x80, 0xaa, 0xaa, 0xaa, 0x80, 0xaa, 0xaa, 0xaa, 0x80, 0xaa, 0xaa, 0xaa, 0x80,
  15. 0x82, 0x08, 0x20, 0x80, 0x82, 0x08, 0x20, 0x80, 0x80, 0x08, 0x00, 0x80, 0x80, 0x08, 0x00, 0x80,
  16. 0x80, 0x08, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  17. 0x00, 0x00, 0x00, 0x00
  18. };
  19. // Array of all bitmaps for convenience. (Total bytes used to store images in PROGMEM = 128)
  20. //const int epd_bitmap_allArray_LEN = 1;
  21. //const unsigned char *epd_bitmap_allArray[1] = {
  22. // epd_bitmap_Measure_25
  23. //};
  24. #endif /* IMAGES_RULER_H_ */