mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-18 23:49:49 +00:00
🚸 More precision in G30 output (#26255)
This commit is contained in:
parent
7338a2fec8
commit
102de7dac3
1 changed files with 3 additions and 3 deletions
|
@ -82,9 +82,9 @@ void GcodeSuite::G30() {
|
|||
if (!isnan(measured_z)) {
|
||||
const xy_pos_t lpos = probepos.asLogical();
|
||||
SString<30> msg(
|
||||
F("Bed X:"), p_float_t(lpos.x, 1),
|
||||
F( " Y:"), p_float_t(lpos.y, 1),
|
||||
F( " Z:"), p_float_t(measured_z, 2)
|
||||
F("Bed X:"), p_float_t(lpos.x, 2),
|
||||
F( " Y:"), p_float_t(lpos.y, 2),
|
||||
F( " Z:"), p_float_t(measured_z, 3)
|
||||
);
|
||||
msg.echoln();
|
||||
#if ANY(DWIN_LCD_PROUI, DWIN_CREALITY_LCD_JYERSUI)
|
||||
|
|
Loading…
Reference in a new issue