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

This commit is contained in:
scott0122 2018-09-01 04:14:33 +08:00 committed by Scott Lahteine
parent 0966bdcbc4
commit 607c1e58d9

View file

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