Skip to content
1 change: 1 addition & 0 deletions Marlin/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -2364,6 +2364,7 @@
#define MESH_EDIT_Z_STEP 0.025 // (mm) Step size while manually probing Z axis.
#define LCD_PROBE_Z_RANGE 4 // (mm) Z Range centered on Z_MIN_POS for LCD Z adjustment
//#define MESH_EDIT_MENU // Add a menu to edit mesh points
//#define BED_MESH_VIEWER // Activate the stable center graphic and numerical plate map
#endif

// Add a menu item to move between bed corners for manual bed adjustment
Expand Down
8 changes: 8 additions & 0 deletions Marlin/src/core/sanitycheck.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#if ENABLED(BED_MESH_VIEWER)
#if !HAS_MARLINUI_U8GLIB
#error "BED_MESH_VIEWER requires a graphical LCD compatible with U8glib (e.g., MINI12864)."
#endif
#if !HAS_LEVELING
#error "BED_MESH_VIEWER requires at least one leveling system enabled (MESH, BILINEAR, or UBL)."
#endif
#endif
Loading
Loading