|
|
|
@ -643,8 +643,8 @@ static void lcd_prepare_menu() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef DELTA_CALIBRATION_MENU
|
|
|
|
|
static void lcd_delta_calibrate_menu()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
static void lcd_delta_calibrate_menu() {
|
|
|
|
|
START_MENU();
|
|
|
|
|
MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
|
|
|
|
|
MENU_ITEM(gcode, MSG_AUTO_HOME, PSTR("G28"));
|
|
|
|
@ -653,11 +653,31 @@ static void lcd_delta_calibrate_menu()
|
|
|
|
|
MENU_ITEM(gcode, MSG_DELTA_CALIBRATE_Z, PSTR("G0 F8000 X0 Y90 Z0"));
|
|
|
|
|
MENU_ITEM(gcode, MSG_DELTA_CALIBRATE_CENTER, PSTR("G0 F8000 X0 Y0 Z0"));
|
|
|
|
|
END_MENU();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif // DELTA_CALIBRATION_MENU
|
|
|
|
|
|
|
|
|
|
inline void line_to_current() {
|
|
|
|
|
#ifdef DELTA
|
|
|
|
|
calculate_delta(current_position);
|
|
|
|
|
plan_buffer_line(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS], current_position[E_AXIS], manual_feedrate[X_AXIS]/60, active_extruder);
|
|
|
|
|
#else
|
|
|
|
|
plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], manual_feedrate[X_AXIS]/60, active_extruder);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float move_menu_scale;
|
|
|
|
|
static void lcd_move_menu_axis();
|
|
|
|
|
static void lcd_move_menu_axis() {
|
|
|
|
|
START_MENU();
|
|
|
|
|
MENU_ITEM(back, MSG_MOVE_AXIS, lcd_move_menu);
|
|
|
|
|
MENU_ITEM(submenu, MSG_MOVE_X, lcd_move_x);
|
|
|
|
|
MENU_ITEM(submenu, MSG_MOVE_Y, lcd_move_y);
|
|
|
|
|
if (move_menu_scale < 10.0) {
|
|
|
|
|
MENU_ITEM(submenu, MSG_MOVE_Z, lcd_move_z);
|
|
|
|
|
MENU_ITEM(submenu, MSG_MOVE_E, lcd_move_e);
|
|
|
|
|
}
|
|
|
|
|
END_MENU();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void _lcd_move(const char *name, int axis, int min, int max) {
|
|
|
|
|
if (encoderPosition != 0) {
|
|
|
|
@ -666,12 +686,7 @@ static void _lcd_move(const char *name, int axis, int min, int max) {
|
|
|
|
|
if (min_software_endstops && current_position[axis] < min) current_position[axis] = min;
|
|
|
|
|
if (max_software_endstops && current_position[axis] > max) current_position[axis] = max;
|
|
|
|
|
encoderPosition = 0;
|
|
|
|
|
#ifdef DELTA
|
|
|
|
|
calculate_delta(current_position);
|
|
|
|
|
plan_buffer_line(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS], current_position[E_AXIS], manual_feedrate[axis]/60, active_extruder);
|
|
|
|
|
#else
|
|
|
|
|
plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], manual_feedrate[axis]/60, active_extruder);
|
|
|
|
|
#endif
|
|
|
|
|
line_to_current();
|
|
|
|
|
lcdDrawUpdate = 1;
|
|
|
|
|
}
|
|
|
|
|
if (lcdDrawUpdate) lcd_implementation_drawedit(name, ftostr31(current_position[axis]));
|
|
|
|
@ -685,30 +700,13 @@ static void lcd_move_e() {
|
|
|
|
|
if (encoderPosition != 0) {
|
|
|
|
|
current_position[E_AXIS] += float((int)encoderPosition) * move_menu_scale;
|
|
|
|
|
encoderPosition = 0;
|
|
|
|
|
#ifdef DELTA
|
|
|
|
|
calculate_delta(current_position);
|
|
|
|
|
plan_buffer_line(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS], current_position[E_AXIS], manual_feedrate[E_AXIS]/60, active_extruder);
|
|
|
|
|
#else
|
|
|
|
|
plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], manual_feedrate[E_AXIS]/60, active_extruder);
|
|
|
|
|
#endif
|
|
|
|
|
line_to_current();
|
|
|
|
|
lcdDrawUpdate = 1;
|
|
|
|
|
}
|
|
|
|
|
if (lcdDrawUpdate) lcd_implementation_drawedit(PSTR("Extruder"), ftostr31(current_position[E_AXIS]));
|
|
|
|
|
if (LCD_CLICKED) lcd_goto_menu(lcd_move_menu_axis);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void lcd_move_menu_axis() {
|
|
|
|
|
START_MENU();
|
|
|
|
|
MENU_ITEM(back, MSG_MOVE_AXIS, lcd_move_menu);
|
|
|
|
|
MENU_ITEM(submenu, MSG_MOVE_X, lcd_move_x);
|
|
|
|
|
MENU_ITEM(submenu, MSG_MOVE_Y, lcd_move_y);
|
|
|
|
|
if (move_menu_scale < 10.0) {
|
|
|
|
|
MENU_ITEM(submenu, MSG_MOVE_Z, lcd_move_z);
|
|
|
|
|
MENU_ITEM(submenu, MSG_MOVE_E, lcd_move_e);
|
|
|
|
|
}
|
|
|
|
|
END_MENU();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void lcd_move_menu_10mm() {
|
|
|
|
|
move_menu_scale = 10.0;
|
|
|
|
|
lcd_move_menu_axis();
|
|
|
|
@ -1793,76 +1791,78 @@ char *ftostr52(const float &x) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef MANUAL_BED_LEVELING
|
|
|
|
|
static int _lcd_level_bed_position;
|
|
|
|
|
static void _lcd_level_bed()
|
|
|
|
|
{
|
|
|
|
|
if (encoderPosition != 0) {
|
|
|
|
|
refresh_cmd_timeout();
|
|
|
|
|
current_position[Z_AXIS] += float((int)encoderPosition) * MBL_Z_STEP;
|
|
|
|
|
if (min_software_endstops && current_position[Z_AXIS] < Z_MIN_POS) current_position[Z_AXIS] = Z_MIN_POS;
|
|
|
|
|
if (max_software_endstops && current_position[Z_AXIS] > Z_MAX_POS) current_position[Z_AXIS] = Z_MAX_POS;
|
|
|
|
|
encoderPosition = 0;
|
|
|
|
|
plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], manual_feedrate[Z_AXIS]/60, active_extruder);
|
|
|
|
|
lcdDrawUpdate = 1;
|
|
|
|
|
}
|
|
|
|
|
if (lcdDrawUpdate) lcd_implementation_drawedit(PSTR("Z"), ftostr43(current_position[Z_AXIS]));
|
|
|
|
|
static bool debounce_click = false;
|
|
|
|
|
if (LCD_CLICKED) {
|
|
|
|
|
if (!debounce_click) {
|
|
|
|
|
debounce_click = true;
|
|
|
|
|
int ix = _lcd_level_bed_position % MESH_NUM_X_POINTS;
|
|
|
|
|
int iy = _lcd_level_bed_position / MESH_NUM_X_POINTS;
|
|
|
|
|
if (iy&1) { // Zig zag
|
|
|
|
|
ix = (MESH_NUM_X_POINTS - 1) - ix;
|
|
|
|
|
}
|
|
|
|
|
mbl.set_z(ix, iy, current_position[Z_AXIS]);
|
|
|
|
|
_lcd_level_bed_position++;
|
|
|
|
|
if (_lcd_level_bed_position == MESH_NUM_X_POINTS*MESH_NUM_Y_POINTS) {
|
|
|
|
|
current_position[Z_AXIS] = MESH_HOME_SEARCH_Z;
|
|
|
|
|
plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], manual_feedrate[X_AXIS]/60, active_extruder);
|
|
|
|
|
mbl.active = 1;
|
|
|
|
|
enquecommands_P(PSTR("G28"));
|
|
|
|
|
lcd_return_to_status();
|
|
|
|
|
} else {
|
|
|
|
|
current_position[Z_AXIS] = MESH_HOME_SEARCH_Z;
|
|
|
|
|
plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], manual_feedrate[X_AXIS]/60, active_extruder);
|
|
|
|
|
ix = _lcd_level_bed_position % MESH_NUM_X_POINTS;
|
|
|
|
|
iy = _lcd_level_bed_position / MESH_NUM_X_POINTS;
|
|
|
|
|
|
|
|
|
|
static int _lcd_level_bed_position;
|
|
|
|
|
static void _lcd_level_bed() {
|
|
|
|
|
if (encoderPosition != 0) {
|
|
|
|
|
refresh_cmd_timeout();
|
|
|
|
|
current_position[Z_AXIS] += float((int)encoderPosition) * MBL_Z_STEP;
|
|
|
|
|
if (min_software_endstops && current_position[Z_AXIS] < Z_MIN_POS) current_position[Z_AXIS] = Z_MIN_POS;
|
|
|
|
|
if (max_software_endstops && current_position[Z_AXIS] > Z_MAX_POS) current_position[Z_AXIS] = Z_MAX_POS;
|
|
|
|
|
encoderPosition = 0;
|
|
|
|
|
line_to_current();
|
|
|
|
|
lcdDrawUpdate = 1;
|
|
|
|
|
}
|
|
|
|
|
if (lcdDrawUpdate) lcd_implementation_drawedit(PSTR("Z"), ftostr43(current_position[Z_AXIS]));
|
|
|
|
|
static bool debounce_click = false;
|
|
|
|
|
if (LCD_CLICKED) {
|
|
|
|
|
if (!debounce_click) {
|
|
|
|
|
debounce_click = true;
|
|
|
|
|
int ix = _lcd_level_bed_position % MESH_NUM_X_POINTS;
|
|
|
|
|
int iy = _lcd_level_bed_position / MESH_NUM_X_POINTS;
|
|
|
|
|
if (iy&1) { // Zig zag
|
|
|
|
|
ix = (MESH_NUM_X_POINTS - 1) - ix;
|
|
|
|
|
}
|
|
|
|
|
current_position[X_AXIS] = mbl.get_x(ix);
|
|
|
|
|
current_position[Y_AXIS] = mbl.get_y(iy);
|
|
|
|
|
plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], manual_feedrate[X_AXIS]/60, active_extruder);
|
|
|
|
|
lcdDrawUpdate = 1;
|
|
|
|
|
mbl.set_z(ix, iy, current_position[Z_AXIS]);
|
|
|
|
|
_lcd_level_bed_position++;
|
|
|
|
|
if (_lcd_level_bed_position == MESH_NUM_X_POINTS*MESH_NUM_Y_POINTS) {
|
|
|
|
|
current_position[Z_AXIS] = MESH_HOME_SEARCH_Z;
|
|
|
|
|
line_to_current();
|
|
|
|
|
mbl.active = 1;
|
|
|
|
|
enquecommands_P(PSTR("G28"));
|
|
|
|
|
lcd_return_to_status();
|
|
|
|
|
} else {
|
|
|
|
|
current_position[Z_AXIS] = MESH_HOME_SEARCH_Z;
|
|
|
|
|
line_to_current();
|
|
|
|
|
ix = _lcd_level_bed_position % MESH_NUM_X_POINTS;
|
|
|
|
|
iy = _lcd_level_bed_position / MESH_NUM_X_POINTS;
|
|
|
|
|
if (iy&1) { // Zig zag
|
|
|
|
|
ix = (MESH_NUM_X_POINTS - 1) - ix;
|
|
|
|
|
}
|
|
|
|
|
current_position[X_AXIS] = mbl.get_x(ix);
|
|
|
|
|
current_position[Y_AXIS] = mbl.get_y(iy);
|
|
|
|
|
line_to_current();
|
|
|
|
|
lcdDrawUpdate = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
debounce_click = false;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
debounce_click = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
static void _lcd_level_bed_homing()
|
|
|
|
|
{
|
|
|
|
|
if (axis_known_position[X_AXIS] &&
|
|
|
|
|
axis_known_position[Y_AXIS] &&
|
|
|
|
|
axis_known_position[Z_AXIS]) {
|
|
|
|
|
current_position[Z_AXIS] = MESH_HOME_SEARCH_Z;
|
|
|
|
|
plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]);
|
|
|
|
|
current_position[X_AXIS] = MESH_MIN_X;
|
|
|
|
|
current_position[Y_AXIS] = MESH_MIN_Y;
|
|
|
|
|
plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], manual_feedrate[X_AXIS]/60, active_extruder);
|
|
|
|
|
_lcd_level_bed_position = 0;
|
|
|
|
|
lcd_goto_menu(_lcd_level_bed);
|
|
|
|
|
|
|
|
|
|
static void _lcd_level_bed_homing() {
|
|
|
|
|
if (axis_known_position[X_AXIS] &&
|
|
|
|
|
axis_known_position[Y_AXIS] &&
|
|
|
|
|
axis_known_position[Z_AXIS]) {
|
|
|
|
|
current_position[Z_AXIS] = MESH_HOME_SEARCH_Z;
|
|
|
|
|
plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]);
|
|
|
|
|
current_position[X_AXIS] = MESH_MIN_X;
|
|
|
|
|
current_position[Y_AXIS] = MESH_MIN_Y;
|
|
|
|
|
line_to_current();
|
|
|
|
|
_lcd_level_bed_position = 0;
|
|
|
|
|
lcd_goto_menu(_lcd_level_bed);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
static void lcd_level_bed() {
|
|
|
|
|
axis_known_position[X_AXIS] = false;
|
|
|
|
|
axis_known_position[Y_AXIS] = false;
|
|
|
|
|
axis_known_position[Z_AXIS] = false;
|
|
|
|
|
mbl.reset();
|
|
|
|
|
enquecommands_P(PSTR("G28"));
|
|
|
|
|
lcd_goto_menu(_lcd_level_bed_homing);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void lcd_level_bed() {
|
|
|
|
|
axis_known_position[X_AXIS] = false;
|
|
|
|
|
axis_known_position[Y_AXIS] = false;
|
|
|
|
|
axis_known_position[Z_AXIS] = false;
|
|
|
|
|
mbl.reset();
|
|
|
|
|
enquecommands_P(PSTR("G28"));
|
|
|
|
|
lcd_goto_menu(_lcd_level_bed_homing);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif // MANUAL_BED_LEVELING
|
|
|
|
|
|
|
|
|
|
#endif //ULTRA_LCD
|
|
|
|
|
#endif // ULTRA_LCD
|
|
|
|
|