Browse Source

Tweak CW/CCW bitmaps

Scott Lahteine 5 years ago
parent
commit
d5c1c72a76
2 changed files with 28 additions and 24 deletions
  1. 24
    24
      Marlin/src/lcd/dogm/ultralcd_DOGM.cpp
  2. 4
    0
      Marlin/src/lcd/menu/menu.h

+ 24
- 24
Marlin/src/lcd/dogm/ultralcd_DOGM.cpp View File

578
   #if EITHER(BABYSTEP_ZPROBE_GFX_OVERLAY, MESH_EDIT_GFX_OVERLAY)
578
   #if EITHER(BABYSTEP_ZPROBE_GFX_OVERLAY, MESH_EDIT_GFX_OVERLAY)
579
 
579
 
580
     const unsigned char cw_bmp[] PROGMEM = {
580
     const unsigned char cw_bmp[] PROGMEM = {
581
-      B00000001,B11111100,B00000000,
582
-      B00000111,B11111111,B00000000,
583
-      B00001111,B00000111,B10000000,
584
-      B00001110,B00000001,B11000000,
585
-      B00000000,B00000001,B11000000,
581
+      B00000000,B11111110,B00000000,
582
+      B00000011,B11111111,B10000000,
583
+      B00000111,B11000111,B11000000,
584
+      B00000111,B00000001,B11100000,
586
       B00000000,B00000000,B11100000,
585
       B00000000,B00000000,B11100000,
587
-      B00001000,B00000000,B11100000,
588
-      B00011100,B00000000,B11100000,
589
-      B00111110,B00000000,B11100000,
590
-      B01111111,B00000000,B11100000,
591
-      B00011100,B00000000,B11100000,
586
+      B00000000,B00000000,B11110000,
587
+      B00000000,B00000000,B01110000,
588
+      B00000100,B00000000,B01110000,
589
+      B00001110,B00000000,B01110000,
590
+      B00011111,B00000000,B01110000,
591
+      B00111111,B10000000,B11110000,
592
       B00001110,B00000000,B11100000,
592
       B00001110,B00000000,B11100000,
593
-      B00001110,B00000001,B11000000,
594
-      B00000111,B10000011,B11000000,
593
+      B00001111,B00000001,B11100000,
594
+      B00000111,B11000111,B11000000,
595
       B00000011,B11111111,B10000000,
595
       B00000011,B11111111,B10000000,
596
       B00000000,B11111110,B00000000
596
       B00000000,B11111110,B00000000
597
     };
597
     };
599
     const unsigned char ccw_bmp[] PROGMEM = {
599
     const unsigned char ccw_bmp[] PROGMEM = {
600
       B00000000,B11111110,B00000000,
600
       B00000000,B11111110,B00000000,
601
       B00000011,B11111111,B10000000,
601
       B00000011,B11111111,B10000000,
602
-      B00000111,B10000011,B11000000,
603
-      B00001110,B00000001,B11000000,
602
+      B00000111,B11000111,B11000000,
603
+      B00001111,B00000001,B11100000,
604
       B00001110,B00000000,B11100000,
604
       B00001110,B00000000,B11100000,
605
-      B00011100,B00000000,B11100000,
606
-      B01111111,B00000000,B11100000,
607
-      B00111110,B00000000,B11100000,
608
-      B00011100,B00000000,B11100000,
609
-      B00001000,B00000000,B11100000,
605
+      B00111111,B10000000,B11110000,
606
+      B00011111,B00000000,B01110000,
607
+      B00001110,B00000000,B01110000,
608
+      B00000100,B00000000,B01110000,
609
+      B00000000,B00000000,B01110000,
610
+      B00000000,B00000000,B11110000,
610
       B00000000,B00000000,B11100000,
611
       B00000000,B00000000,B11100000,
611
-      B00000000,B00000001,B11000000,
612
-      B00001110,B00000001,B11000000,
613
-      B00001111,B00000111,B10000000,
614
-      B00000111,B11111111,B00000000,
615
-      B00000001,B11111100,B00000000
612
+      B00000111,B00000001,B11100000,
613
+      B00000111,B11000111,B11000000,
614
+      B00000011,B11111111,B10000000,
615
+      B00000000,B11111110,B00000000
616
     };
616
     };
617
 
617
 
618
     const unsigned char up_arrow_bmp[] PROGMEM = {
618
     const unsigned char up_arrow_bmp[] PROGMEM = {

+ 4
- 0
Marlin/src/lcd/menu/menu.h View File

423
   void lcd_enqueue_one_now_P(PGM_P const cmd);
423
   void lcd_enqueue_one_now_P(PGM_P const cmd);
424
 #endif
424
 #endif
425
 
425
 
426
+#if HAS_GRAPHICAL_LCD && EITHER(BABYSTEP_ZPROBE_GFX_OVERLAY, MESH_EDIT_GFX_OVERLAY)
427
+  void _lcd_zoffset_overlay_gfx(const float zvalue);
428
+#endif
429
+
426
 #if ENABLED(LEVEL_BED_CORNERS)
430
 #if ENABLED(LEVEL_BED_CORNERS)
427
   void _lcd_level_bed_corners();
431
   void _lcd_level_bed_corners();
428
 #endif
432
 #endif

Loading…
Cancel
Save