Skip to content

Instantly share code, notes, and snippets.

@frdmn
Created April 3, 2023 06:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frdmn/dfdae53cefc8e107f5110c80012f208e to your computer and use it in GitHub Desktop.
Save frdmn/dfdae53cefc8e107f5110c80012f208e to your computer and use it in GitHub Desktop.
Gcode commands for manual bed leveling / tramming

Gcode commands for manual bed leveling / tramming (Ender 3)

The commands below assume a build plate of 235 x 235 mm.

Preparation

Disable endstops (Z-Limit)

M211 S0 

Corner leveling/tramming

Bottom left

G0 Z2.5
G0 X30 Y30 F5000
G0 Z0

Bottom right

G0 Z2.5
G0 X205 Y30 F5000
G0 Z0

Top left

G0 Z2.5
G0 X30 Y205 F5000
G0 Z0

Top right

G0 Z2.5
G0 X205 Y205 F5000
G0 Z0

Post processing

Enable endstops (Z-Limit)

M211 S1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment