123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634 |
- /**
- * Marlin 3D Printer Firmware
- * Copyright (C) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
- *
- * Based on Sprinter and grbl.
- * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
-
- //
- // Unified Bed Leveling Menus
- //
-
- #include "../../inc/MarlinConfigPre.h"
-
- #if HAS_LCD_MENU && ENABLED(AUTO_BED_LEVELING_UBL)
-
- #include "menu.h"
- #include "../../module/planner.h"
- #include "../../module/configuration_store.h"
- #include "../../feature/bedlevel/bedlevel.h"
-
- static int16_t ubl_storage_slot = 0,
- custom_hotend_temp = 190,
- side_points = 3,
- ubl_fillin_amount = 5,
- ubl_height_amount = 1,
- n_edit_pts = 1,
- x_plot = 0,
- y_plot = 0;
-
- #if HAS_HEATED_BED
- static int16_t custom_bed_temp = 50;
- #endif
-
- float mesh_edit_value, mesh_edit_accumulator; // We round mesh_edit_value to 2.5 decimal places. So we keep a
- // separate value that doesn't lose precision.
- static int16_t ubl_encoderPosition = 0;
-
- static void _lcd_mesh_fine_tune(PGM_P msg) {
- ui.defer_status_screen();
- if (ubl.encoder_diff) {
- ubl_encoderPosition = (ubl.encoder_diff > 0) ? 1 : -1;
- ubl.encoder_diff = 0;
-
- mesh_edit_accumulator += float(ubl_encoderPosition) * 0.005f * 0.5f;
- mesh_edit_value = mesh_edit_accumulator;
- ui.encoderPosition = 0;
- ui.refresh(LCDVIEW_CALL_REDRAW_NEXT);
-
- const int32_t rounded = (int32_t)(mesh_edit_value * 1000);
- mesh_edit_value = float(rounded - (rounded % 5L)) / 1000;
- }
-
- if (ui.should_draw()) {
- draw_edit_screen(msg, ftostr43sign(mesh_edit_value));
- #if ENABLED(MESH_EDIT_GFX_OVERLAY)
- _lcd_zoffset_overlay_gfx(mesh_edit_value);
- #endif
- }
- }
-
- void _lcd_mesh_edit_NOP() {
- ui.defer_status_screen();
- }
-
- float lcd_mesh_edit() {
- ui.goto_screen(_lcd_mesh_edit_NOP);
- ui.refresh(LCDVIEW_CALL_REDRAW_NEXT);
- _lcd_mesh_fine_tune(PSTR("Mesh Editor"));
- return mesh_edit_value;
- }
-
- void lcd_mesh_edit_setup(const float &initial) {
- mesh_edit_value = mesh_edit_accumulator = initial;
- ui.goto_screen(_lcd_mesh_edit_NOP);
- }
-
- void _lcd_z_offset_edit() {
- _lcd_mesh_fine_tune(PSTR("Z-Offset: "));
- }
-
- float lcd_z_offset_edit() {
- ui.goto_screen(_lcd_z_offset_edit);
- return mesh_edit_value;
- }
-
- void lcd_z_offset_edit_setup(const float &initial) {
- mesh_edit_value = mesh_edit_accumulator = initial;
- ui.goto_screen(_lcd_z_offset_edit);
- }
-
- /**
- * UBL Build Custom Mesh Command
- */
- void _lcd_ubl_build_custom_mesh() {
- char UBL_LCD_GCODE[20];
- enqueue_and_echo_commands_P(PSTR("G28"));
- #if HAS_HEATED_BED
- sprintf_P(UBL_LCD_GCODE, PSTR("M190 S%i"), custom_bed_temp);
- lcd_enqueue_command(UBL_LCD_GCODE);
- #endif
- sprintf_P(UBL_LCD_GCODE, PSTR("M109 S%i"), custom_hotend_temp);
- lcd_enqueue_command(UBL_LCD_GCODE);
- enqueue_and_echo_commands_P(PSTR("G29 P1"));
- }
-
- /**
- * UBL Custom Mesh submenu
- *
- * << Build Mesh
- * Hotend Temp: ---
- * Bed Temp: ---
- * Build Custom Mesh
- */
- void _lcd_ubl_custom_mesh() {
- START_MENU();
- MENU_BACK(MSG_UBL_BUILD_MESH_MENU);
- MENU_ITEM_EDIT(int3, MSG_UBL_HOTEND_TEMP_CUSTOM, &custom_hotend_temp, EXTRUDE_MINTEMP, (HEATER_0_MAXTEMP - 10));
- #if HAS_HEATED_BED
- MENU_ITEM_EDIT(int3, MSG_UBL_BED_TEMP_CUSTOM, &custom_bed_temp, BED_MINTEMP, (BED_MAXTEMP - 10));
- #endif
- MENU_ITEM(function, MSG_UBL_BUILD_CUSTOM_MESH, _lcd_ubl_build_custom_mesh);
- END_MENU();
- }
-
- /**
- * UBL Adjust Mesh Height Command
- */
- void _lcd_ubl_adjust_height_cmd() {
- char UBL_LCD_GCODE[16];
- const int ind = ubl_height_amount > 0 ? 9 : 10;
- strcpy_P(UBL_LCD_GCODE, PSTR("G29 P6 C -"));
- sprintf_P(&UBL_LCD_GCODE[ind], PSTR(".%i"), ABS(ubl_height_amount));
- lcd_enqueue_command(UBL_LCD_GCODE);
- }
-
- /**
- * UBL Adjust Mesh Height submenu
- *
- * << Edit Mesh
- * Height Amount: ---
- * Adjust Mesh Height
- * << Info Screen
- */
- void _menu_ubl_height_adjust() {
- START_MENU();
- MENU_BACK(MSG_EDIT_MESH);
- MENU_ITEM_EDIT_CALLBACK(int3, MSG_UBL_MESH_HEIGHT_AMOUNT, &ubl_height_amount, -9, 9, _lcd_ubl_adjust_height_cmd);
- MENU_ITEM(function, MSG_WATCH, ui.return_to_status);
- END_MENU();
- }
-
- /**
- * UBL Edit Mesh submenu
- *
- * << UBL Tools
- * Fine Tune All
- * Fine Tune Closest
- * - Adjust Mesh Height >>
- * << Info Screen
- */
- void _lcd_ubl_edit_mesh() {
- START_MENU();
- MENU_BACK(MSG_UBL_TOOLS);
- MENU_ITEM(gcode, MSG_UBL_FINE_TUNE_ALL, PSTR("G29 P4 R999 T"));
- MENU_ITEM(gcode, MSG_UBL_FINE_TUNE_CLOSEST, PSTR("G29 P4 T"));
- MENU_ITEM(submenu, MSG_UBL_MESH_HEIGHT_ADJUST, _menu_ubl_height_adjust);
- MENU_ITEM(function, MSG_WATCH, ui.return_to_status);
- END_MENU();
- }
-
- /**
- * UBL Validate Custom Mesh Command
- */
- void _lcd_ubl_validate_custom_mesh() {
- char UBL_LCD_GCODE[24];
- const int temp =
- #if HAS_HEATED_BED
- custom_bed_temp
- #else
- 0
- #endif
- ;
- sprintf_P(UBL_LCD_GCODE, PSTR("G26 C B%i H%i P"), temp, custom_hotend_temp);
- lcd_enqueue_commands_P(PSTR("G28"));
- lcd_enqueue_command(UBL_LCD_GCODE);
- }
-
- /**
- * UBL Validate Mesh submenu
- *
- * << UBL Tools
- * Mesh Validation with Material 1
- * Mesh Validation with Material 2
- * Validate Custom Mesh
- * << Info Screen
- */
- void _lcd_ubl_validate_mesh() {
- START_MENU();
- MENU_BACK(MSG_UBL_TOOLS);
- #if HAS_HEATED_BED
- MENU_ITEM(gcode, MSG_UBL_VALIDATE_MESH_M1, PSTR("G28\nG26 C B" STRINGIFY(PREHEAT_1_TEMP_BED) " H" STRINGIFY(PREHEAT_1_TEMP_HOTEND) " P"));
- MENU_ITEM(gcode, MSG_UBL_VALIDATE_MESH_M2, PSTR("G28\nG26 C B" STRINGIFY(PREHEAT_2_TEMP_BED) " H" STRINGIFY(PREHEAT_2_TEMP_HOTEND) " P"));
- #else
- MENU_ITEM(gcode, MSG_UBL_VALIDATE_MESH_M1, PSTR("G28\nG26 C B0 H" STRINGIFY(PREHEAT_1_TEMP_HOTEND) " P"));
- MENU_ITEM(gcode, MSG_UBL_VALIDATE_MESH_M2, PSTR("G28\nG26 C B0 H" STRINGIFY(PREHEAT_2_TEMP_HOTEND) " P"));
- #endif
- MENU_ITEM(function, MSG_UBL_VALIDATE_CUSTOM_MESH, _lcd_ubl_validate_custom_mesh);
- MENU_ITEM(function, MSG_WATCH, ui.return_to_status);
- END_MENU();
- }
-
- /**
- * UBL Grid Leveling Command
- */
- void _lcd_ubl_grid_level_cmd() {
- char UBL_LCD_GCODE[12];
- sprintf_P(UBL_LCD_GCODE, PSTR("G29 J%i"), side_points);
- lcd_enqueue_command(UBL_LCD_GCODE);
- }
-
- /**
- * UBL Grid Leveling submenu
- *
- * << UBL Tools
- * Side points: ---
- * Level Mesh
- */
- void _lcd_ubl_grid_level() {
- START_MENU();
- MENU_BACK(MSG_UBL_TOOLS);
- MENU_ITEM_EDIT(int3, MSG_UBL_SIDE_POINTS, &side_points, 2, 6);
- MENU_ITEM(function, MSG_UBL_MESH_LEVEL, _lcd_ubl_grid_level_cmd);
- END_MENU();
- }
-
- /**
- * UBL Mesh Leveling submenu
- *
- * << UBL Tools
- * 3-Point Mesh Leveling
- * - Grid Mesh Leveling >>
- * << Info Screen
- */
- void _lcd_ubl_mesh_leveling() {
- START_MENU();
- MENU_BACK(MSG_UBL_TOOLS);
- MENU_ITEM(gcode, MSG_UBL_3POINT_MESH_LEVELING, PSTR("G29 J0"));
- MENU_ITEM(submenu, MSG_UBL_GRID_MESH_LEVELING, _lcd_ubl_grid_level);
- MENU_ITEM(function, MSG_WATCH, ui.return_to_status);
- END_MENU();
- }
-
- /**
- * UBL Fill-in Amount Mesh Command
- */
- void _lcd_ubl_fillin_amount_cmd() {
- char UBL_LCD_GCODE[18];
- sprintf_P(UBL_LCD_GCODE, PSTR("G29 P3 R C.%i"), ubl_fillin_amount);
- lcd_enqueue_command(UBL_LCD_GCODE);
- }
-
- /**
- * UBL Fill-in Mesh submenu
- *
- * << Build Mesh
- * Fill-in Amount: ---
- * Fill-in Mesh
- * Smart Fill-in
- * Manual Fill-in
- * << Info Screen
- */
- void _menu_ubl_fillin() {
- START_MENU();
- MENU_BACK(MSG_UBL_BUILD_MESH_MENU);
- MENU_ITEM_EDIT_CALLBACK(int3, MSG_UBL_FILLIN_AMOUNT, &ubl_fillin_amount, 0, 9, _lcd_ubl_fillin_amount_cmd);
- MENU_ITEM(gcode, MSG_UBL_SMART_FILLIN, PSTR("G29 P3 T0"));
- MENU_ITEM(gcode, MSG_UBL_MANUAL_FILLIN, PSTR("G29 P2 B T0"));
- MENU_ITEM(function, MSG_WATCH, ui.return_to_status);
- END_MENU();
- }
-
- void _lcd_ubl_invalidate() {
- ubl.invalidate();
- SERIAL_ECHOLNPGM("Mesh invalidated.");
- }
-
- /**
- * UBL Build Mesh submenu
- *
- * << UBL Tools
- * Build Mesh with Material 1
- * Build Mesh with Material 2
- * - Build Custom Mesh >>
- * Build Cold Mesh
- * - Fill-in Mesh >>
- * Continue Bed Mesh
- * Invalidate All
- * Invalidate Closest
- * << Info Screen
- */
- void _lcd_ubl_build_mesh() {
- START_MENU();
- MENU_BACK(MSG_UBL_TOOLS);
- #if HAS_HEATED_BED
- MENU_ITEM(gcode, MSG_UBL_BUILD_MESH_M1, PSTR(
- "G28\n"
- "M190 S" STRINGIFY(PREHEAT_1_TEMP_BED) "\n"
- "M109 S" STRINGIFY(PREHEAT_1_TEMP_HOTEND) "\n"
- "G29 P1\n"
- "M104 S0\n"
- "M140 S0"
- ));
- MENU_ITEM(gcode, MSG_UBL_BUILD_MESH_M2, PSTR(
- "G28\n"
- "M190 S" STRINGIFY(PREHEAT_2_TEMP_BED) "\n"
- "M109 S" STRINGIFY(PREHEAT_2_TEMP_HOTEND) "\n"
- "G29 P1\n"
- "M104 S0\n"
- "M140 S0"
- ));
- #else
- MENU_ITEM(gcode, MSG_UBL_BUILD_MESH_M1, PSTR(
- "G28\n"
- "M109 S" STRINGIFY(PREHEAT_1_TEMP_HOTEND) "\n"
- "G29 P1\n"
- "M104 S0"
- ));
- MENU_ITEM(gcode, MSG_UBL_BUILD_MESH_M2, PSTR(
- "G28\n"
- "M109 S" STRINGIFY(PREHEAT_2_TEMP_HOTEND) "\n"
- "G29 P1\n"
- "M104 S0"
- ));
- #endif
- MENU_ITEM(submenu, MSG_UBL_BUILD_CUSTOM_MESH, _lcd_ubl_custom_mesh);
- MENU_ITEM(gcode, MSG_UBL_BUILD_COLD_MESH, PSTR("G28\nG29 P1"));
- MENU_ITEM(submenu, MSG_UBL_FILLIN_MESH, _menu_ubl_fillin);
- MENU_ITEM(gcode, MSG_UBL_CONTINUE_MESH, PSTR("G29 P1 C"));
- MENU_ITEM(function, MSG_UBL_INVALIDATE_ALL, _lcd_ubl_invalidate);
- MENU_ITEM(gcode, MSG_UBL_INVALIDATE_CLOSEST, PSTR("G29 I"));
- MENU_ITEM(function, MSG_WATCH, ui.return_to_status);
- END_MENU();
- }
-
- /**
- * UBL Load Mesh Command
- */
- void _lcd_ubl_load_mesh_cmd() {
- char UBL_LCD_GCODE[25];
- sprintf_P(UBL_LCD_GCODE, PSTR("G29 L%i"), ubl_storage_slot);
- lcd_enqueue_command(UBL_LCD_GCODE);
- sprintf_P(UBL_LCD_GCODE, PSTR("M117 " MSG_MESH_LOADED), ubl_storage_slot);
- lcd_enqueue_command(UBL_LCD_GCODE);
- }
-
- /**
- * UBL Save Mesh Command
- */
- void _lcd_ubl_save_mesh_cmd() {
- char UBL_LCD_GCODE[25];
- sprintf_P(UBL_LCD_GCODE, PSTR("G29 S%i"), ubl_storage_slot);
- lcd_enqueue_command(UBL_LCD_GCODE);
- sprintf_P(UBL_LCD_GCODE, PSTR("M117 " MSG_MESH_SAVED), ubl_storage_slot);
- lcd_enqueue_command(UBL_LCD_GCODE);
- }
-
- /**
- * UBL Mesh Storage submenu
- *
- * << Unified Bed Leveling
- * Memory Slot: ---
- * Load Bed Mesh
- * Save Bed Mesh
- */
- void _lcd_ubl_storage_mesh() {
- int16_t a = settings.calc_num_meshes();
- START_MENU();
- MENU_BACK(MSG_UBL_LEVEL_BED);
- if (!WITHIN(ubl_storage_slot, 0, a - 1)) {
- STATIC_ITEM(MSG_NO_STORAGE);
- }
- else {
- MENU_ITEM_EDIT(int3, MSG_UBL_STORAGE_SLOT, &ubl_storage_slot, 0, a - 1);
- MENU_ITEM(function, MSG_UBL_LOAD_MESH, _lcd_ubl_load_mesh_cmd);
- MENU_ITEM(function, MSG_UBL_SAVE_MESH, _lcd_ubl_save_mesh_cmd);
- }
- END_MENU();
- }
-
- /**
- * UBL LCD "radar" map homing
- */
- void _lcd_ubl_output_map_lcd();
-
- void _lcd_ubl_map_homing() {
- ui.defer_status_screen();
- _lcd_draw_homing();
- if (all_axes_homed()) {
- ubl.lcd_map_control = true; // Return to the map screen
- ui.goto_screen(_lcd_ubl_output_map_lcd);
- }
- }
-
- /**
- * UBL LCD "radar" map point editing
- */
- void _lcd_ubl_map_lcd_edit_cmd() {
- char UBL_LCD_GCODE[50], str[10], str2[10];
- dtostrf(pgm_read_float(&ubl._mesh_index_to_xpos[x_plot]), 0, 2, str);
- dtostrf(pgm_read_float(&ubl._mesh_index_to_ypos[y_plot]), 0, 2, str2);
- snprintf_P(UBL_LCD_GCODE, sizeof(UBL_LCD_GCODE), PSTR("G29 P4 X%s Y%s R%i"), str, str2, n_edit_pts);
- lcd_enqueue_command(UBL_LCD_GCODE);
- }
-
- /**
- * UBL LCD Map Movement
- */
- void ubl_map_move_to_xy() {
- REMEMBER(fr, feedrate_mm_s, MMM_TO_MMS(XY_PROBE_SPEED));
-
- set_destination_from_current(); // sync destination at the start
-
- #if ENABLED(DELTA)
- if (current_position[Z_AXIS] > delta_clip_start_height) {
- destination[Z_AXIS] = delta_clip_start_height;
- prepare_move_to_destination();
- }
- #endif
-
- destination[X_AXIS] = pgm_read_float(&ubl._mesh_index_to_xpos[x_plot]);
- destination[Y_AXIS] = pgm_read_float(&ubl._mesh_index_to_ypos[y_plot]);
-
- prepare_move_to_destination();
- }
-
- /**
- * UBL LCD "radar" map
- */
- void set_current_from_steppers_for_axis(const AxisEnum axis);
- void sync_plan_position();
-
- void _lcd_do_nothing() {}
- void _lcd_hard_stop() {
- const screenFunc_t old_screen = ui.currentScreen;
- ui.currentScreen = _lcd_do_nothing;
- planner.quick_stop();
- ui.currentScreen = old_screen;
- set_current_from_steppers_for_axis(ALL_AXES);
- sync_plan_position();
- }
-
- void _lcd_ubl_output_map_lcd() {
- static int16_t step_scaler = 0;
-
- if (ui.use_click()) return _lcd_ubl_map_lcd_edit_cmd();
- ui.encoder_direction_normal();
-
- if (ui.encoderPosition) {
- step_scaler += int16_t(ui.encoderPosition);
- x_plot += step_scaler / (ENCODER_STEPS_PER_MENU_ITEM);
- ui.encoderPosition = 0;
- ui.refresh(LCDVIEW_REDRAW_NOW);
- }
-
- #if IS_KINEMATIC
- #define KEEP_LOOPING true // Loop until a valid point is found
- #else
- #define KEEP_LOOPING false
- #endif
-
- do {
- // Encoder to the right (++)
- if (x_plot >= GRID_MAX_POINTS_X) { x_plot = 0; y_plot++; }
- if (y_plot >= GRID_MAX_POINTS_Y) y_plot = 0;
-
- // Encoder to the left (--)
- if (x_plot < 0) { x_plot = GRID_MAX_POINTS_X - 1; y_plot--; }
- if (y_plot < 0) y_plot = GRID_MAX_POINTS_Y - 1;
-
- #if IS_KINEMATIC
- const float x = pgm_read_float(&ubl._mesh_index_to_xpos[x_plot]),
- y = pgm_read_float(&ubl._mesh_index_to_ypos[y_plot]);
- if (position_is_reachable(x, y)) break; // Found a valid point
- x_plot += (step_scaler < 0) ? -1 : 1;
- #endif
-
- } while(KEEP_LOOPING);
-
- // Determine number of points to edit
- #if IS_KINEMATIC
- n_edit_pts = 9; //TODO: Delta accessible edit points
- #else
- const bool xc = WITHIN(x_plot, 1, GRID_MAX_POINTS_X - 2),
- yc = WITHIN(y_plot, 1, GRID_MAX_POINTS_Y - 2);
- n_edit_pts = yc ? (xc ? 9 : 6) : (xc ? 6 : 4); // Corners
- #endif
-
- // Cleanup
- if (ABS(step_scaler) >= ENCODER_STEPS_PER_MENU_ITEM) step_scaler = 0;
-
- if (ui.should_draw()) {
- ui.ubl_plot(x_plot, y_plot);
-
- if (planner.movesplanned()) // If the nozzle is already moving, cancel the move.
- _lcd_hard_stop();
-
- ubl_map_move_to_xy(); // Move to new location
- }
- }
-
- /**
- * UBL Homing before LCD map
- */
- void _lcd_ubl_output_map_lcd_cmd() {
- if (!all_axes_known()) {
- set_all_unhomed();
- enqueue_and_echo_commands_P(PSTR("G28"));
- }
- ui.goto_screen(_lcd_ubl_map_homing);
- }
-
- /**
- * UBL Output map submenu
- *
- * << Unified Bed Leveling
- * Output for Host
- * Output for CSV
- * Off Printer Backup
- * Output Mesh Map
- */
- void _lcd_ubl_output_map() {
- START_MENU();
- MENU_BACK(MSG_UBL_LEVEL_BED);
- MENU_ITEM(gcode, MSG_UBL_OUTPUT_MAP_HOST, PSTR("G29 T0"));
- MENU_ITEM(gcode, MSG_UBL_OUTPUT_MAP_CSV, PSTR("G29 T1"));
- MENU_ITEM(gcode, MSG_UBL_OUTPUT_MAP_BACKUP, PSTR("G29 S-1"));
- MENU_ITEM(function, MSG_UBL_OUTPUT_MAP, _lcd_ubl_output_map_lcd_cmd);
- END_MENU();
- }
-
- /**
- * UBL Tools submenu
- *
- * << Unified Bed Leveling
- * - Build Mesh >>
- * - Validate Mesh >>
- * - Edit Mesh >>
- * - Mesh Leveling >>
- */
- void _menu_ubl_tools() {
- START_MENU();
- MENU_BACK(MSG_UBL_LEVEL_BED);
- MENU_ITEM(submenu, MSG_UBL_BUILD_MESH_MENU, _lcd_ubl_build_mesh);
- MENU_ITEM(gcode, MSG_UBL_MANUAL_MESH, PSTR("G29 I999\nG29 P2 B T0"));
- MENU_ITEM(submenu, MSG_UBL_VALIDATE_MESH_MENU, _lcd_ubl_validate_mesh);
- MENU_ITEM(submenu, MSG_EDIT_MESH, _lcd_ubl_edit_mesh);
- MENU_ITEM(submenu, MSG_UBL_MESH_LEVELING, _lcd_ubl_mesh_leveling);
- END_MENU();
- }
-
- /**
- * UBL Step-By-Step submenu
- *
- * << Unified Bed Leveling
- * 1 Build Cold Mesh
- * 2 Smart Fill-in
- * - 3 Validate Mesh >>
- * 4 Fine Tune All
- * - 5 Validate Mesh >>
- * 6 Fine Tune All
- * 7 Save Bed Mesh
- */
- void _lcd_ubl_step_by_step() {
- START_MENU();
- MENU_BACK(MSG_UBL_LEVEL_BED);
- MENU_ITEM(gcode, "1 " MSG_UBL_BUILD_COLD_MESH, PSTR("G28\nG29 P1"));
- MENU_ITEM(gcode, "2 " MSG_UBL_SMART_FILLIN, PSTR("G29 P3 T0"));
- MENU_ITEM(submenu, "3 " MSG_UBL_VALIDATE_MESH_MENU, _lcd_ubl_validate_mesh);
- MENU_ITEM(gcode, "4 " MSG_UBL_FINE_TUNE_ALL, PSTR("G29 P4 R999 T"));
- MENU_ITEM(submenu, "5 " MSG_UBL_VALIDATE_MESH_MENU, _lcd_ubl_validate_mesh);
- MENU_ITEM(gcode, "6 " MSG_UBL_FINE_TUNE_ALL, PSTR("G29 P4 R999 T"));
- MENU_ITEM(function, "7 " MSG_UBL_SAVE_MESH, _lcd_ubl_save_mesh_cmd);
- END_MENU();
- }
-
- /**
- * UBL System submenu
- *
- * << Motion
- * - Manually Build Mesh >>
- * - Activate UBL >>
- * - Deactivate UBL >>
- * - Step-By-Step UBL >>
- * - Mesh Storage >>
- * - Output Map >>
- * - UBL Tools >>
- * - Output UBL Info >>
- */
-
- void _lcd_ubl_level_bed() {
- START_MENU();
- MENU_BACK(MSG_MOTION);
- if (planner.leveling_active)
- MENU_ITEM(gcode, MSG_UBL_DEACTIVATE_MESH, PSTR("G29 D"));
- else
- MENU_ITEM(gcode, MSG_UBL_ACTIVATE_MESH, PSTR("G29 A"));
- MENU_ITEM(submenu, MSG_UBL_STEP_BY_STEP_MENU, _lcd_ubl_step_by_step);
- MENU_ITEM(function, MSG_UBL_MESH_EDIT, _lcd_ubl_output_map_lcd_cmd);
- MENU_ITEM(submenu, MSG_UBL_STORAGE_MESH_MENU, _lcd_ubl_storage_mesh);
- MENU_ITEM(submenu, MSG_UBL_OUTPUT_MAP, _lcd_ubl_output_map);
- MENU_ITEM(submenu, MSG_UBL_TOOLS, _menu_ubl_tools);
- MENU_ITEM(gcode, MSG_UBL_INFO_UBL, PSTR("G29 W"));
- #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
- MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float3, MSG_Z_FADE_HEIGHT, &lcd_z_fade_height, 0, 100, _lcd_set_z_fade_height);
- #endif
- END_MENU();
- }
-
- #endif // HAS_LCD_MENU && AUTO_BED_LEVELING_UBL
|