Browse Source

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

scott0122 7 years ago
parent
commit
607c1e58d9
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/gcode/config/M218.cpp

+ 1
- 1
Marlin/src/gcode/config/M218.cpp View File

65
       SERIAL_CHAR(',');
65
       SERIAL_CHAR(',');
66
       SERIAL_ECHO(hotend_offset[Y_AXIS][e]);
66
       SERIAL_ECHO(hotend_offset[Y_AXIS][e]);
67
       SERIAL_CHAR(',');
67
       SERIAL_CHAR(',');
68
-      SERIAL_ECHO(hotend_offset[Z_AXIS][e]);
68
+      SERIAL_ECHO_F(hotend_offset[Z_AXIS][e], 3);
69
     }
69
     }
70
     SERIAL_EOL();
70
     SERIAL_EOL();
71
   }
71
   }

Loading…
Cancel
Save