@ -1663,346 +1663,366 @@ void kill_screen(const char* lcd_msg) {
END_MENU ( ) ;
END_MENU ( ) ;
}
}
# if ENABLED(AUTO_BED_LEVELING_UBL)
# if ENABLED(AUTO_BED_LEVELING_UBL)
void _lcd_ubl_level_bed ( ) ;
int UBL_STORAGE_SLOT = 0 ,
CUSTOM_BED_TEMP = 50 ,
CUSTOM_HOTEND_TEMP = 190 ,
SIDE_POINTS = 3 ,
UBL_FILLIN_AMOUNT = 5 ,
UBL_HEIGHT_AMOUNT ,
map_type ;
char UBL_LCD_GCODE [ 30 ] ;
void _lcd_ubl_level_bed ( ) ;
/**
static int ubl_storage_slot = 0 ,
* UBL Build Custom Mesh Command
custom_bed_temp = 50 ,
*/
custom_hotend_temp = 190 ,
void _lcd_ubl_build_custom_mesh ( ) {
side_points = 3 ,
enqueue_and_echo_command ( " G28 " ) ;
ubl_fillin_amount = 5 ,
# if (WATCH_THE_BED)
ubl_height_amount ,
sprintf_P ( UBL_LCD_GCODE , PSTR ( " M190 S%i " ) , CUSTOM_BED_TEMP ) ;
map_type ;
enqueue_and_echo_command ( UBL_LCD_GCODE ) ;
# endif
sprintf_P ( UBL_LCD_GCODE , PSTR ( " M109 S%i " ) , CUSTOM_HOTEND_TEMP ) ;
enqueue_and_echo_command ( UBL_LCD_GCODE ) ;
enqueue_and_echo_command ( " G29 P1 " ) ;
}
/**
/**
* UBL Custom Mesh submenu
* UBL Build Custom Mesh Command
*/
*/
void _lcd_ubl_custom_mesh ( ) {
void _lcd_ubl_build_custom_mesh ( ) {
START_MENU ( ) ;
char UBL_LCD_GCODE [ 20 ] ;
MENU_BACK ( MSG_UBL_BUILD_MESH_MENU ) ;
enqueue_and_echo_commands_P ( PSTR ( " G28 " ) ) ;
MENU_ITEM_EDIT ( int3 , MSG_UBL_CUSTOM_HOTEND_TEMP , & CUSTOM_HOTEND_TEMP , EXTRUDE_MINTEMP , ( HEATER_0_MAXTEMP - 10 ) ) ;
# if WATCH_THE_BED
# if (WATCH_THE_BED)
sprintf_P ( UBL_LCD_GCODE , PSTR ( " M190 S%i " ) , custom_bed_temp ) ;
MENU_ITEM_EDIT ( int3 , MSG_UBL_CUSTOM_BED_TEMP , & CUSTOM_BED_TEMP , BED_MINTEMP , ( BED_MAXTEMP - 5 ) ) ;
enqueue_and_echo_command ( UBL_LCD_GCODE ) ;
# endif
# endif
MENU_ITEM ( function , MSG_UBL_BUILD_CUSTOM_MESH , _lcd_ubl_build_custom_mesh ) ;
sprintf_P ( UBL_LCD_GCODE , PSTR ( " M109 S%i " ) , custom_hotend_temp ) ;
END_MENU ( ) ;
enqueue_and_echo_command ( UBL_LCD_GCODE ) ;
}
enqueue_and_echo_commands_P ( PSTR ( " G29 P1 " ) ) ;
}
/**
/**
* UBL Adjust Mesh Height Command
* UBL Custom Mesh submenu
*/
*/
void _lcd_ubl_adjust_height_cmd ( ) {
void _lcd_ubl_custom_mesh ( ) {
if ( UBL_HEIGHT_AMOUNT < 0 ) {
START_MENU ( ) ;
// Convert to positive for the `sprintf_P` string.
MENU_BACK ( MSG_UBL_BUILD_MESH_MENU ) ;
UBL_HEIGHT_AMOUNT = ( UBL_HEIGHT_AMOUNT - ( UBL_HEIGHT_AMOUNT * 2 ) ) ; // Convert to positive
MENU_ITEM_EDIT ( int3 , MSG_UBL_CUSTOM_HOTEND_TEMP , & custom_hotend_temp , EXTRUDE_MINTEMP , ( HEATER_0_MAXTEMP - 10 ) ) ;
sprintf_P ( UBL_LCD_GCODE , PSTR ( " G29 P6-.%i " ) , UBL_HEIGHT_AMOUNT ) ;
# if WATCH_THE_BED
// Convert back to negative to preserve the user setting.
MENU_ITEM_EDIT ( int3 , MSG_UBL_CUSTOM_BED_TEMP , & custom_bed_temp , BED_MINTEMP , ( BED_MAXTEMP - 5 ) ) ;
UBL_HEIGHT_AMOUNT = ( UBL_HEIGHT_AMOUNT - ( UBL_HEIGHT_AMOUNT * 2 ) ) ; // Convert back to negative
# endif
MENU_ITEM ( function , MSG_UBL_BUILD_CUSTOM_MESH , _lcd_ubl_build_custom_mesh ) ;
END_MENU ( ) ;
}
}
else {
sprintf_P ( UBL_LCD_GCODE , PSTR ( " G29 P6.%i " ) , UBL_HEIGHT_AMOUNT ) ;
/**
* UBL Adjust Mesh Height Command
*/
void _lcd_ubl_adjust_height_cmd ( ) {
char UBL_LCD_GCODE [ 16 ] ;
const int ind = ubl_height_amount < 0 ? 6 : 7 ;
strcpy_P ( UBL_LCD_GCODE , PSTR ( " G29 P6- " ) ) ;
sprintf_P ( & UBL_LCD_GCODE [ ind ] , PSTR ( " .%i " ) , abs ( ubl_height_amount ) ) ;
enqueue_and_echo_command ( UBL_LCD_GCODE ) ;
}
}
enqueue_and_echo_command ( UBL_LCD_GCODE ) ;
}
/**
/**
* UBL Adjust Mesh Height submenu
* UBL Adjust Mesh Height submenu
*/
*/
void _lcd_ubl_height_adjust_menu ( ) {
void _lcd_ubl_height_adjust_menu ( ) {
START_MENU ( ) ;
START_MENU ( ) ;
MENU_BACK ( MSG_UBL_EDIT_MESH_MENU ) ;
MENU_BACK ( MSG_UBL_EDIT_MESH_MENU ) ;
MENU_ITEM_EDIT ( int3 , MSG_UBL_MESH_HEIGHT_AMOUNT , & UBL_HEIGHT_AMOUNT , - 9 , 9 ) ;
MENU_ITEM_EDIT ( int3 , MSG_UBL_MESH_HEIGHT_AMOUNT , & ubl_height_amount , - 9 , 9 ) ;
MENU_ITEM ( function , MSG_UBL_MESH_HEIGHT_ADJUST , _lcd_ubl_adjust_height_cmd ) ;
MENU_ITEM ( function , MSG_UBL_MESH_HEIGHT_ADJUST , _lcd_ubl_adjust_height_cmd ) ;
MENU_ITEM ( submenu , MSG_WATCH , lcd_status_screen ) ;
MENU_ITEM ( submenu , MSG_WATCH , lcd_status_screen ) ;
END_MENU ( ) ;
END_MENU ( ) ;
}
}
/**
/**
* UBL Edit Mesh submenu
* UBL Edit Mesh submenu
*/
*/
void _lcd_ubl_edit_mesh ( ) {
void _lcd_ubl_edit_mesh ( ) {
START_MENU ( ) ;
START_MENU ( ) ;
MENU_BACK ( MSG_UBL_TOOLS ) ;
MENU_BACK ( MSG_UBL_TOOLS ) ;
MENU_BACK ( MSG_UBL_LEVEL_BED ) ;
MENU_BACK ( MSG_UBL_LEVEL_BED ) ;
MENU_ITEM ( gcode , MSG_UBL_FINE_TUNE_ALL , PSTR ( " G29 P4 R T " ) ) ;
MENU_ITEM ( gcode , MSG_UBL_FINE_TUNE_ALL , PSTR ( " G29 P4 R T " ) ) ;
MENU_ITEM ( gcode , MSG_UBL_FINE_TUNE_CLOSEST , PSTR ( " G29 P4 T " ) ) ;
MENU_ITEM ( gcode , MSG_UBL_FINE_TUNE_CLOSEST , PSTR ( " G29 P4 T " ) ) ;
MENU_ITEM ( submenu , MSG_UBL_MESH_HEIGHT_ADJUST , _lcd_ubl_height_adjust_menu ) ;
MENU_ITEM ( submenu , MSG_UBL_MESH_HEIGHT_ADJUST , _lcd_ubl_height_adjust_menu ) ;
MENU_ITEM ( submenu , MSG_WATCH , lcd_status_screen ) ;
MENU_ITEM ( submenu , MSG_WATCH , lcd_status_screen ) ;
END_MENU ( ) ;
END_MENU ( ) ;
}
}
/**
/**
* UBL Validate Custom Mesh Command
* UBL Validate Custom Mesh Command
*/
*/
void _lcd_ubl_validate_custom_mesh ( ) {
void _lcd_ubl_validate_custom_mesh ( ) {
enqueue_and_echo_command ( " G28 " ) ;
char UBL_LCD_GCODE [ 24 ] ;
# if (WATCH_THE_BED)
const int temp =
sprintf_P ( UBL_LCD_GCODE , PSTR ( " G26 C B%i H%i P " ) , CUSTOM_BED_TEMP , CUSTOM_HOTEND_TEMP ) ;
# if WATCH_THE_BED
# else
custom_bed_temp
sprintf_P ( UBL_LCD_GCODE , PSTR ( " G26 C B0 H%i P " ) , CUSTOM_HOTEND_TEMP ) ;
# else
# endif
0
enqueue_and_echo_command ( UBL_LCD_GCODE ) ;
# endif
}
;
sprintf_P ( UBL_LCD_GCODE , PSTR ( " G28 \n G26 C B%i H%i P " ) , temp , custom_hotend_temp ) ;
enqueue_and_echo_command ( UBL_LCD_GCODE ) ;
}
/**
/**
* UBL Validate Mesh submenu
* UBL Validate Mesh submenu
*/
*/
void _lcd_ubl_validate_mesh ( ) {
void _lcd_ubl_validate_mesh ( ) {
START_MENU ( ) ;
START_MENU ( ) ;
MENU_BACK ( MSG_UBL_TOOLS ) ;
MENU_BACK ( MSG_UBL_TOOLS ) ;
# if (WATCH_THE_BED)
# if WATCH_THE_BED
MENU_ITEM ( gcode , MSG_UBL_VALIDATE_PLA_MESH , PSTR ( " G28 \n G26 C B " STRINGIFY ( PREHEAT_1_TEMP_BED )
MENU_ITEM ( gcode , MSG_UBL_VALIDATE_PLA_MESH , PSTR ( " G28 \n G26 C B " STRINGIFY ( PREHEAT_1_TEMP_BED ) " H " STRINGIFY ( PREHEAT_1_TEMP_HOTEND ) " P " ) ) ;
" H " STRINGIFY ( PREHEAT_1_TEMP_HOTEND ) " P " ) ) ;
MENU_ITEM ( gcode , MSG_UBL_VALIDATE_ABS_MESH , PSTR ( " G28 \n G26 C B " STRINGIFY ( PREHEAT_2_TEMP_BED ) " H " STRINGIFY ( PREHEAT_2_TEMP_HOTEND ) " P " ) ) ;
MENU_ITEM ( gcode , MSG_UBL_VALIDATE_ABS_MESH , PSTR ( " G28 \n G26 C B " STRINGIFY ( PREHEAT_2_TEMP_BED )
# else
" H " STRINGIFY ( PREHEAT_2_TEMP_HOTEND ) " P " ) ) ;
MENU_ITEM ( gcode , MSG_UBL_VALIDATE_PLA_MESH , PSTR ( " G28 \n G26 C B0 H " STRINGIFY ( PREHEAT_1_TEMP_HOTEND ) " P " ) ) ;
# else
MENU_ITEM ( gcode , MSG_UBL_VALIDATE_ABS_MESH , PSTR ( " G28 \n G26 C B0 H " STRINGIFY ( PREHEAT_2_TEMP_HOTEND ) " P " ) ) ;
MENU_ITEM ( gcode , MSG_UBL_VALIDATE_PLA_MESH , PSTR ( " G28 \n G26 C B0 H " STRINGIFY ( PREHEAT_1_TEMP_HOTEND ) " P " ) ) ;
# endif
MENU_ITEM ( gcode , MSG_UBL_VALIDATE_ABS_MESH , PSTR ( " G28 \n G26 C B0 H " STRINGIFY ( PREHEAT_2_TEMP_HOTEND ) " P " ) ) ;
MENU_ITEM ( function , MSG_UBL_VALIDATE_CUSTOM_MESH , _lcd_ubl_validate_custom_mesh ) ;
# endif
MENU_ITEM ( submenu , MSG_WATCH , lcd_status_screen ) ;
MENU_ITEM ( function , MSG_UBL_VALIDATE_CUSTOM_MESH , _lcd_ubl_validate_custom_mesh ) ;
END_MENU ( ) ;
MENU_ITEM ( submenu , MSG_WATCH , lcd_status_screen ) ;
}
END_MENU ( ) ;
}
/**
/**
* UBL Grid Leveling Command
* UBL Grid Leveling Command
*/
*/
void _lcd_ubl_grid_level_cmd ( ) {
void _lcd_ubl_grid_level_cmd ( ) {
sprintf_P ( UBL_LCD_GCODE , PSTR ( " G29 J%i " ) , SIDE_POINTS ) ;
char UBL_LCD_GCODE [ 10 ] ;
enqueue_and_echo_command ( UBL_LCD_GCODE ) ;
sprintf_P ( UBL_LCD_GCODE , PSTR ( " G29 J%i " ) , side_points ) ;
}
enqueue_and_echo_command ( UBL_LCD_GCODE ) ;
}
/**
/**
* UBL Grid Leveling submenu
* UBL Grid Leveling submenu
*/
*/
void _lcd_ubl_grid_level ( ) {
void _lcd_ubl_grid_level ( ) {
START_MENU ( ) ;
START_MENU ( ) ;
MENU_BACK ( MSG_UBL_TOOLS ) ;
MENU_BACK ( MSG_UBL_TOOLS ) ;
MENU_ITEM_EDIT ( int3 , MSG_UBL_SIDE_POINTS , & SIDE_POINTS , 2 , 6 ) ;
MENU_ITEM_EDIT ( int3 , MSG_UBL_SIDE_POINTS , & side_points , 2 , 6 ) ;
MENU_ITEM ( function , MSG_UBL_MESH_LEVEL , _lcd_ubl_grid_level_cmd ) ;
MENU_ITEM ( function , MSG_UBL_MESH_LEVEL , _lcd_ubl_grid_level_cmd ) ;
END_MENU ( ) ;
END_MENU ( ) ;
}
}
/**
/**
* UBL Mesh Leveling submenu
* UBL Mesh Leveling submenu
*/
*/
void _lcd_ubl_mesh_leveling ( ) {
void _lcd_ubl_mesh_leveling ( ) {
START_MENU ( ) ;
START_MENU ( ) ;
MENU_BACK ( MSG_UBL_TOOLS ) ;
MENU_BACK ( MSG_UBL_TOOLS ) ;
MENU_ITEM ( gcode , MSG_UBL_3POINT_MESH_LEVELING , PSTR ( " G29 J0 " ) ) ;
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 ( submenu , MSG_UBL_GRID_MESH_LEVELING , _lcd_ubl_grid_level ) ;
MENU_ITEM ( submenu , MSG_WATCH , lcd_status_screen ) ;
MENU_ITEM ( submenu , MSG_WATCH , lcd_status_screen ) ;
END_MENU ( ) ;
END_MENU ( ) ;
}
}
/**
/**
* UBL Fill - in Amount Mesh Command
* UBL Fill - in Amount Mesh Command
*/
*/
void _lcd_ubl_fillin_amount_cmd ( ) {
void _lcd_ubl_fillin_amount_cmd ( ) {
sprintf_P ( UBL_LCD_GCODE , PSTR ( " G29 P3 R C.%i " ) , UBL_FILLIN_AMOUNT ) ;
char UBL_LCD_GCODE [ 16 ] ;
enqueue_and_echo_command ( UBL_LCD_GCODE ) ;
sprintf_P ( UBL_LCD_GCODE , PSTR ( " G29 P3 R C.%i " ) , ubl_fillin_amount ) ;
}
enqueue_and_echo_command ( UBL_LCD_GCODE ) ;
}
/**
/**
* UBL Smart Fill - in Command
* UBL Smart Fill - in Command
*/
*/
void _lcd_ubl_smart_fillin_cmd ( ) {
void _lcd_ubl_smart_fillin_cmd ( ) {
sprintf_P ( UBL_LCD_GCODE , PSTR ( " G29 P3 T%i " ) , map_type ) ;
char UBL_LCD_GCODE [ 12 ] ;
enqueue_and_echo_command ( UBL_LCD_GCODE ) ;
sprintf_P ( UBL_LCD_GCODE , PSTR ( " G29 P3 T%i " ) , map_type ) ;
}
enqueue_and_echo_command ( UBL_LCD_GCODE ) ;
}
/**
/**
* UBL Fill - in Mesh submenu
* UBL Fill - in Mesh submenu
*/
*/
void _lcd_ubl_fillin_menu ( ) {
void _lcd_ubl_fillin_menu ( ) {
START_MENU ( ) ;
START_MENU ( ) ;
MENU_BACK ( MSG_UBL_BUILD_MESH_MENU ) ;
MENU_BACK ( MSG_UBL_BUILD_MESH_MENU ) ;
MENU_ITEM_EDIT ( int3 , MSG_UBL_FILLIN_AMOUNT , & UBL_FILLIN_AMOUNT , 0 , 9 ) ;
MENU_ITEM_EDIT ( int3 , MSG_UBL_FILLIN_AMOUNT , & ubl_fillin_amount , 0 , 9 ) ;
MENU_ITEM ( function , MSG_UBL_FILLIN_MESH , _lcd_ubl_fillin_amount_cmd ) ;
MENU_ITEM ( function , MSG_UBL_FILLIN_MESH , _lcd_ubl_fillin_amount_cmd ) ;
MENU_ITEM ( function , MSG_UBL_SMART_FILLIN , _lcd_ubl_smart_fillin_cmd ) ;
MENU_ITEM ( function , MSG_UBL_SMART_FILLIN , _lcd_ubl_smart_fillin_cmd ) ;
MENU_ITEM ( gcode , MSG_UBL_MANUAL_FILLIN , PSTR ( " G29 P2 B T0 " ) ) ;
MENU_ITEM ( gcode , MSG_UBL_MANUAL_FILLIN , PSTR ( " G29 P2 B T0 " ) ) ;
MENU_ITEM ( submenu , MSG_WATCH , lcd_status_screen ) ;
MENU_ITEM ( submenu , MSG_WATCH , lcd_status_screen ) ;
END_MENU ( ) ;
END_MENU ( ) ;
}
}
void _lcd_ubl_invalidate ( ) {
void _lcd_ubl_invalidate ( ) {
ubl . invalidate ( ) ;
ubl . invalidate ( ) ;
SERIAL_PROTOCOLLNPGM ( " Mesh invalidated. " ) ;
SERIAL_PROTOCOLLNPGM ( " Mesh invalidated. " ) ;
}
}
/**
/**
* UBL Build Mesh submenu
* UBL Build Mesh submenu
*/
*/
void _lcd_ubl_build_mesh ( ) {
void _lcd_ubl_build_mesh ( ) {
START_MENU ( ) ;
START_MENU ( ) ;
MENU_BACK ( MSG_UBL_TOOLS ) ;
MENU_BACK ( MSG_UBL_TOOLS ) ;
# if (WATCH_THE_BED)
# if WATCH_THE_BED
MENU_ITEM ( gcode , MSG_UBL_BUILD_PLA_MESH , PSTR ( " G28 \n M190 S " STRINGIFY ( PREHEAT_1_TEMP_BED )
MENU_ITEM ( gcode , MSG_UBL_BUILD_PLA_MESH , PSTR (
" \n M109 S " STRINGIFY ( PREHEAT_1_TEMP_HOTEND ) " \n G29 P1 \n M104 S0 \n M140 S0 " ) ) ;
" G28 \n "
MENU_ITEM ( gcode , MSG_UBL_BUILD_ABS_MESH , PSTR ( " G28 \n M190 S " STRINGIFY ( PREHEAT_1_TEMP_BED )
" M190 S " STRINGIFY ( PREHEAT_1_TEMP_BED ) " \n "
" \n M109 S " STRINGIFY ( PREHEAT_1_TEMP_HOTEND ) " \n G29 P1 \n M104 S0 \n M140 S0 " ) ) ;
" M109 S " STRINGIFY ( PREHEAT_1_TEMP_HOTEND ) " \n "
# else
" G29 P1 \n "
MENU_ITEM ( gcode , MSG_UBL_BUILD_PLA_MESH , PSTR ( " G28 \n M109 S " STRINGIFY ( PREHEAT_1_TEMP_HOTEND )
" M104 S0 \n "
" \n G29 P1 \n M104 S0 " ) ) ;
" M140 S0 "
MENU_ITEM ( gcode , MSG_UBL_BUILD_ABS_MESH , PSTR ( " G28 \n M109 S " STRINGIFY ( PREHEAT_1_TEMP_HOTEND )
) ) ;
" \n G29 P1 \n M104 S0 " ) ) ;
MENU_ITEM ( gcode , MSG_UBL_BUILD_ABS_MESH , PSTR (
# endif
" G28 \n "
MENU_ITEM ( submenu , MSG_UBL_BUILD_CUSTOM_MESH , _lcd_ubl_custom_mesh ) ;
" M190 S " STRINGIFY ( PREHEAT_2_TEMP_BED ) " \n "
MENU_ITEM ( gcode , MSG_UBL_BUILD_COLD_MESH , PSTR ( " G28 \n G29 P1 " ) ) ;
" M109 S " STRINGIFY ( PREHEAT_2_TEMP_HOTEND ) " \n "
MENU_ITEM ( submenu , MSG_UBL_FILLIN_MESH , _lcd_ubl_fillin_menu ) ;
" G29 P1 \n "
MENU_ITEM ( gcode , MSG_UBL_CONTINUE_MESH , PSTR ( " G29 P1 C " ) ) ;
" M104 S0 \n "
MENU_ITEM ( function , MSG_UBL_INVALIDATE_ALL , _lcd_ubl_invalidate ) ;
" M140 S0 "
MENU_ITEM ( gcode , MSG_UBL_INVALIDATE_CLOSEST , PSTR ( " G29 I " ) ) ;
) ) ;
MENU_ITEM ( submenu , MSG_WATCH , lcd_status_screen ) ;
# else
END_MENU ( ) ;
MENU_ITEM ( gcode , MSG_UBL_BUILD_PLA_MESH , PSTR (
}
" G28 \n "
" M109 S " STRINGIFY ( PREHEAT_1_TEMP_HOTEND ) " \n "
" G29 P1 \n "
" M104 S0 "
) ) ;
MENU_ITEM ( gcode , MSG_UBL_BUILD_ABS_MESH , 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 \n G29 P1 " ) ) ;
MENU_ITEM ( submenu , MSG_UBL_FILLIN_MESH , _lcd_ubl_fillin_menu ) ;
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 ( submenu , MSG_WATCH , lcd_status_screen ) ;
END_MENU ( ) ;
}
/**
/**
* UBL Load Mesh Command
* UBL Load Mesh Command
*/
*/
void _lcd_ubl_load_mesh_cmd ( ) {
void _lcd_ubl_load_mesh_cmd ( ) {
sprintf_P ( UBL_LCD_GCODE , PSTR ( " G29 L%i " ) , UBL_STORAGE_SLOT ) ;
char UBL_LCD_GCODE [ 8 ] ;
enqueue_and_echo_command ( UBL_LCD_GCODE ) ;
sprintf_P ( UBL_LCD_GCODE , PSTR ( " G29 L%i " ) , ubl_storage_slot ) ;
}
enqueue_and_echo_command ( UBL_LCD_GCODE ) ;
}
/**
/**
* UBL Save Mesh Command
* UBL Save Mesh Command
*/
*/
void _lcd_ubl_save_mesh_cmd ( ) {
void _lcd_ubl_save_mesh_cmd ( ) {
sprintf_P ( UBL_LCD_GCODE , PSTR ( " G29 S%i " ) , UBL_STORAGE_SLOT ) ;
char UBL_LCD_GCODE [ 8 ] ;
enqueue_and_echo_command ( UBL_LCD_GCODE ) ;
sprintf_P ( UBL_LCD_GCODE , PSTR ( " G29 S%i " ) , ubl_storage_slot ) ;
}
enqueue_and_echo_command ( UBL_LCD_GCODE ) ;
}
/**
/**
* UBL Mesh Storage submenu
* UBL Mesh Storage submenu
*/
*/
void _lcd_ubl_storage_mesh ( ) {
void _lcd_ubl_storage_mesh ( ) {
START_MENU ( ) ;
START_MENU ( ) ;
MENU_BACK ( MSG_UBL_LEVEL_BED ) ;
MENU_BACK ( MSG_UBL_LEVEL_BED ) ;
MENU_ITEM_EDIT ( int3 , MSG_UBL_STORAGE_SLOT , & UBL_STORAGE_SLOT , 0 , 9 ) ;
MENU_ITEM_EDIT ( int3 , MSG_UBL_STORAGE_SLOT , & ubl_storage_slot , 0 , 9 ) ;
MENU_ITEM ( function , MSG_UBL_LOAD_MESH , _lcd_ubl_load_mesh_cmd ) ;
MENU_ITEM ( function , MSG_UBL_LOAD_MESH , _lcd_ubl_load_mesh_cmd ) ;
MENU_ITEM ( function , MSG_UBL_SAVE_MESH , _lcd_ubl_save_mesh_cmd ) ;
MENU_ITEM ( function , MSG_UBL_SAVE_MESH , _lcd_ubl_save_mesh_cmd ) ;
END_MENU ( ) ;
END_MENU ( ) ;
}
}
/**
/**
* UBL Output map Command
* UBL Output map Command
*/
*/
void _lcd_ubl_output_map_cmd ( ) {
void _lcd_ubl_output_map_cmd ( ) {
sprintf_P ( UBL_LCD_GCODE , PSTR ( " G29 T%i " ) , map_type ) ;
char UBL_LCD_GCODE [ 10 ] ;
enqueue_and_echo_command ( UBL_LCD_GCODE ) ;
sprintf_P ( UBL_LCD_GCODE , PSTR ( " G29 T%i " ) , map_type ) ;
}
enqueue_and_echo_command ( UBL_LCD_GCODE ) ;
}
/**
/**
* UBL Output map submenu
* UBL Output map submenu
*/
*/
void _lcd_ubl_output_map ( ) {
void _lcd_ubl_output_map ( ) {
START_MENU ( ) ;
START_MENU ( ) ;
MENU_BACK ( MSG_UBL_LEVEL_BED ) ;
MENU_BACK ( MSG_UBL_LEVEL_BED ) ;
MENU_ITEM_EDIT ( int3 , MSG_UBL_MAP_TYPE , & map_type , 0 , 1 ) ;
MENU_ITEM_EDIT ( int3 , MSG_UBL_MAP_TYPE , & map_type , 0 , 1 ) ;
if ( map_type = = 0 ) MENU_ITEM ( function , MSG_UBL_OUTPUT_MAP_HOST , _lcd_ubl_output_map_cmd ) ;
if ( map_type = = 0 ) MENU_ITEM ( function , MSG_UBL_OUTPUT_MAP_HOST , _lcd_ubl_output_map_cmd ) ;
if ( map_type = = 1 ) MENU_ITEM ( function , MSG_UBL_OUTPUT_MAP_CSV , _lcd_ubl_output_map_cmd ) ;
if ( map_type = = 1 ) MENU_ITEM ( function , MSG_UBL_OUTPUT_MAP_CSV , _lcd_ubl_output_map_cmd ) ;
END_MENU ( ) ;
END_MENU ( ) ;
}
}
/**
/**
* UBL Tools submenu
* UBL Tools submenu
*/
*/
void _lcd_ubl_tools_menu ( ) {
void _lcd_ubl_tools_menu ( ) {
START_MENU ( ) ;
START_MENU ( ) ;
MENU_BACK ( MSG_UBL_LEVEL_BED ) ;
MENU_BACK ( MSG_UBL_LEVEL_BED ) ;
MENU_ITEM ( submenu , MSG_UBL_BUILD_MESH_MENU , _lcd_ubl_build_mesh ) ;
MENU_ITEM ( submenu , MSG_UBL_BUILD_MESH_MENU , _lcd_ubl_build_mesh ) ;
MENU_ITEM ( submenu , MSG_UBL_VALIDATE_MESH_MENU , _lcd_ubl_validate_mesh ) ;
MENU_ITEM ( submenu , MSG_UBL_VALIDATE_MESH_MENU , _lcd_ubl_validate_mesh ) ;
MENU_ITEM ( submenu , MSG_UBL_EDIT_MESH_MENU , _lcd_ubl_edit_mesh ) ;
MENU_ITEM ( submenu , MSG_UBL_EDIT_MESH_MENU , _lcd_ubl_edit_mesh ) ;
MENU_ITEM ( submenu , MSG_UBL_MESH_LEVELING , _lcd_ubl_mesh_leveling ) ;
MENU_ITEM ( submenu , MSG_UBL_MESH_LEVELING , _lcd_ubl_mesh_leveling ) ;
END_MENU ( ) ;
END_MENU ( ) ;
}
}
/**
/**
* UBL System submenu
* UBL System submenu
*
*
* Prepare
* Prepare
* - Unified Bed Leveling
* - Unified Bed Leveling
* - Activate UBL
* - Activate UBL
* - Deactivate UBL
* - Deactivate UBL
* - Mesh Storage
* - Mesh Storage
* Memory Slot :
* Memory Slot :
* Load Bed Mesh
* Load Bed Mesh
* Save Bed Mesh
* Save Bed Mesh
* - Output Map
* - Output Map
* Map Type :
* Map Type :
* Output Bed Mesh Host / Output Bed Mesh CSV
* Output Bed Mesh Host / Output Bed Mesh CSV
* - UBL Tools
* - UBL Tools
* - Build Mesh
* - Build Mesh
* Build PLA Mesh
* Build PLA Mesh
* Build ABS Mesh
* Build ABS Mesh
* - Build Custom Mesh
* - Build Custom Mesh
* Hotend Temp :
* Hotend Temp :
* Bed Temp :
* Bed Temp :
* Build Custom Mesh
* Build Custom Mesh
* Info Screen
* Info Screen
* - Build Cold Mesh
* - Build Cold Mesh
* - Fill - in Mesh
* - Fill - in Mesh
* Fill - in Mesh
* Fill - in Mesh
* Smart Fill - in
* Smart Fill - in
* Manual Fill - in
* Manual Fill - in
* Info Screen
* Info Screen
* Continue Bed Mesh
* Continue Bed Mesh
* Invalidate All
* Invalidate All
* Invalidate Closest
* Invalidate Closest
* - Validate Mesh
* - Validate Mesh
* PLA Mesh Validation
* PLA Mesh Validation
* ABS Mesh Validation
* ABS Mesh Validation
* - Custom Mesh Validation
* - Custom Mesh Validation
* Hotend Temp :
* Hotend Temp :
* Bed Temp :
* Bed Temp :
* Validate Mesh
* Validate Mesh
* Info Screen
* Info Screen
* - Edit Mesh
* - Edit Mesh
* Fine Tune All
* Fine Tune All
* Fine Tune Closest
* Fine Tune Closest
* - Adjust Mesh Height
* - Adjust Mesh Height
* Height Amount :
* Height Amount :
* Adjust Mesh Height
* Adjust Mesh Height
* Info Screen
* Info Screen
* - Mesh Leveling
* - Mesh Leveling
* 3 - Point Mesh Leveling
* 3 - Point Mesh Leveling
* - Grid Mesh Leveling
* - Grid Mesh Leveling
* Side points :
* Side points :
* Level Mesh
* Level Mesh
* Info Screen
* Info Screen
* - Output UBL Info
* - Output UBL Info
*/
*/
void _lcd_ubl_level_bed ( ) {
void _lcd_ubl_level_bed ( ) {
START_MENU ( ) ;
START_MENU ( ) ;
MENU_BACK ( MSG_PREPARE ) ;
MENU_BACK ( MSG_PREPARE ) ;
MENU_ITEM ( gcode , MSG_UBL_ACTIVATE_MESH , PSTR ( " G29 A " ) ) ;
MENU_ITEM ( gcode , MSG_UBL_ACTIVATE_MESH , PSTR ( " G29 A " ) ) ;
MENU_ITEM ( gcode , MSG_UBL_DEACTIVATE_MESH , PSTR ( " G29 D " ) ) ;
MENU_ITEM ( gcode , MSG_UBL_DEACTIVATE_MESH , PSTR ( " G29 D " ) ) ;
MENU_ITEM ( submenu , MSG_UBL_STORAGE_MESH_MENU , _lcd_ubl_storage_mesh ) ;
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_OUTPUT_MAP , _lcd_ubl_output_map ) ;
MENU_ITEM ( submenu , MSG_UBL_TOOLS , _lcd_ubl_tools_menu ) ;
MENU_ITEM ( submenu , MSG_UBL_TOOLS , _lcd_ubl_tools_menu ) ;
MENU_ITEM ( gcode , MSG_UBL_INFO_UBL , PSTR ( " G29 W " ) ) ;
MENU_ITEM ( gcode , MSG_UBL_INFO_UBL , PSTR ( " G29 W " ) ) ;
END_MENU ( ) ;
END_MENU ( ) ;
}
}
# endif
# endif
# endif // LCD_BED_LEVELING || HAS_ABL
# endif // LCD_BED_LEVELING || HAS_ABL
@ -2052,7 +2072,7 @@ void kill_screen(const char* lcd_msg) {
MENU_ITEM ( submenu , MSG_LEVEL_BED , lcd_level_bed ) ;
MENU_ITEM ( submenu , MSG_LEVEL_BED , lcd_level_bed ) ;
# endif
# endif
# endif
# endif // LCD_BED_LEVELING || HAS_ABL
# if HAS_M206_COMMAND
# if HAS_M206_COMMAND
//
//