Skip to content

Commit

Permalink
Merge pull request #131 from PavelSindler/MK2
Browse files Browse the repository at this point in the history
changed xyz details menu
  • Loading branch information
PavelSindler authored Jun 23, 2017
2 parents 4d0e542 + 5e63c5e commit b3eeac1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Firmware/ultralcd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1371,18 +1371,18 @@ void lcd_service_mode_show_result() {
lcd_implementation_clear();


lcd_printPGM(PSTR("Angle diff: "));
lcd_printPGM(PSTR("Measured skew: "));
if (angleDiff < 100) {
lcd.print(angleDiff * 180 / M_PI);
lcd.print(LCD_STR_DEGREE);
}else lcd_print_at_PGM(12, 0, PSTR("N/A"));
}else lcd_print_at_PGM(15, 0, PSTR("N/A"));
lcd_print_at_PGM(0, 1, PSTR("--------------------"));
lcd_print_at_PGM(0, 2, PSTR("Mild:"));
lcd_print_at_PGM(12, 2, PSTR(""));
lcd_print_at_PGM(0, 2, PSTR("Slight skew:"));
lcd_print_at_PGM(15, 2, PSTR(""));
lcd.print(bed_skew_angle_mild * 180 / M_PI);
lcd.print(LCD_STR_DEGREE);
lcd_print_at_PGM(0, 3, PSTR("Extreme:"));
lcd_print_at_PGM(12, 3, PSTR(""));
lcd_print_at_PGM(0, 3, PSTR("Severe skew:"));
lcd_print_at_PGM(15, 3, PSTR(""));
lcd.print(bed_skew_angle_extreme * 180 / M_PI);
lcd.print(LCD_STR_DEGREE);
delay_keep_alive(500);
Expand Down

0 comments on commit b3eeac1

Please sign in to comment.