Browse Source

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

pull/1/head
scott0122 6 years ago
committed by Scott Lahteine
parent
commit
ada85d5585
  1. 3
      Marlin/src/module/configuration_store.cpp

3
Marlin/src/module/configuration_store.cpp

@ -2165,7 +2165,8 @@ void MarlinSettings::reset(PORTARG_SOLO) {
SERIAL_ECHOPAIR_P(port, " M218 T", (int)e);
SERIAL_ECHOPAIR_P(port, " X", LINEAR_UNIT(hotend_offset[X_AXIS][e]));
SERIAL_ECHOPAIR_P(port, " Y", LINEAR_UNIT(hotend_offset[Y_AXIS][e]));
SERIAL_ECHOPAIR_P(port, " Z", LINEAR_UNIT(hotend_offset[Z_AXIS][e]));
SERIAL_ECHO_P(port, " Z");
SERIAL_ECHO_F_P(port, LINEAR_UNIT(hotend_offset[Z_AXIS][e]), 3);
SERIAL_EOL_P(port);
}
#endif

Loading…
Cancel
Save