🚸 More precision in G30 output (#26255)
This commit is contained in:
@@ -82,9 +82,9 @@ void GcodeSuite::G30() {
|
|||||||
if (!isnan(measured_z)) {
|
if (!isnan(measured_z)) {
|
||||||
const xy_pos_t lpos = probepos.asLogical();
|
const xy_pos_t lpos = probepos.asLogical();
|
||||||
SString<30> msg(
|
SString<30> msg(
|
||||||
F("Bed X:"), p_float_t(lpos.x, 1),
|
F("Bed X:"), p_float_t(lpos.x, 2),
|
||||||
F( " Y:"), p_float_t(lpos.y, 1),
|
F( " Y:"), p_float_t(lpos.y, 2),
|
||||||
F( " Z:"), p_float_t(measured_z, 2)
|
F( " Z:"), p_float_t(measured_z, 3)
|
||||||
);
|
);
|
||||||
msg.echoln();
|
msg.echoln();
|
||||||
#if ANY(DWIN_LCD_PROUI, DWIN_CREALITY_LCD_JYERSUI)
|
#if ANY(DWIN_LCD_PROUI, DWIN_CREALITY_LCD_JYERSUI)
|
||||||
|
Reference in New Issue
Block a user