Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavelSindler <pavel@prusa3d.cz>2017-06-23 14:15:41 +0300
committerGitHub <noreply@github.com>2017-06-23 14:15:41 +0300
commitb3eeac124a58e35f173759cb18ceb5f27ed43cfd (patch)
tree491a96e22d24d98fdee75c6860753e0f1806ddc2
parent4d0e5428fb459e121848538a9e54d93640f7c16e (diff)
parent5e63c5ed85044052cee9ba667ec0f37291d264e5 (diff)
Merge pull request #131 from PavelSindler/MK2v3.0.12_RC2
changed xyz details menu
-rw-r--r--Firmware/ultralcd.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/Firmware/ultralcd.cpp b/Firmware/ultralcd.cpp
index 0c1ad73ec..040f5a74b 100644
--- a/Firmware/ultralcd.cpp
+++ b/Firmware/ultralcd.cpp
@@ -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);