Skip to content
Snippets Groups Projects
Commit 607c1e58 authored by scott0122's avatar scott0122 Committed by Scott Lahteine
Browse files

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

parent 0966bdcb
No related branches found
No related tags found
No related merge requests found
......@@ -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();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment