Ver código fonte

Improve HOTEND OFFSET Z display precision to 3 (#11685)

scott0122 6 anos atrás
pai
commit
607c1e58d9
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      Marlin/src/gcode/config/M218.cpp

+ 1
- 1
Marlin/src/gcode/config/M218.cpp Ver arquivo

@@ -65,7 +65,7 @@ void GcodeSuite::M218() {
65 65
       SERIAL_CHAR(',');
66 66
       SERIAL_ECHO(hotend_offset[Y_AXIS][e]);
67 67
       SERIAL_CHAR(',');
68
-      SERIAL_ECHO(hotend_offset[Z_AXIS][e]);
68
+      SERIAL_ECHO_F(hotend_offset[Z_AXIS][e], 3);
69 69
     }
70 70
     SERIAL_EOL();
71 71
   }

Carregando…
Cancelar
Salvar