Improve HOTEND OFFSET Z display precision to 3 (#11685)
This commit is contained in:
parent
0966bdcbc4
commit
607c1e58d9
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Reference in a new issue