Skip to content

Instantly share code, notes, and snippets.

@djekl
Created April 25, 2020 18:45
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 djekl/6db8772433110b80986829f253cc3a57 to your computer and use it in GitHub Desktop.
Save djekl/6db8772433110b80986829f253cc3a57 to your computer and use it in GitHub Desktop.
G90 ;Set to absolute positioning
M82 ;Extruder absolute mode
G28 ;Move to origin / Home
G1 X120 Y50 Z3 ;Linear move (X, Y, Z)
G92 E0 ;Set position
G1 E30 ;Linear move (Extruder)
G92 E0 ;Set position
G1 E-1.5 F500 ;Linear move (Extruder) (Speed 500)
G1 Z6 ;Linear move (Z)
G1 Y35 F2000 ;Linear move (Y) (Speed 2000)
@djekl
Copy link
Author

djekl commented Apr 25, 2020

For somebody who is new to the world of 3D printing, finding this group on facebook was amazing.

However, I don't fully understand gcode yet, so the code shared by Gregory was a little confusing to me. I used the following site to explain this for me - https://cimera42.github.io/gcode-explainer/

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