Skip to content

Instantly share code, notes, and snippets.

@gcormier
Last active November 13, 2016 00:48
Show Gist options
  • Save gcormier/76f5f7b415c18af7f964419221e4a196 to your computer and use it in GitHub Desktop.
Save gcormier/76f5f7b415c18af7f964419221e4a196 to your computer and use it in GitHub Desktop.
Pen plotting setup with a Reprap
; Prepare printer for a regular G28 as if you were going to do a print.
G90 ; Absolute
G28 ; Home
G0 Z15 ; Move axis up (change this to your liking)
M18 ; Disable steppers
; Now, move the carriage to X0 Y0 of your piece of paper (watch out for butterfly clips holding paper down
; Insert the pen and push it firmly onto the paper.
G92 X0 Y0 Z1 ; Reset coords
; Now, run your print. Make sure not to issue any G28 or other coordinate commands.
; If the pen pressure is not enough, you can INCREASE the Z in the G92 command.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment