Skip to content

Instantly share code, notes, and snippets.

@ConnerWill
Last active February 18, 2025 15:49
Show Gist options
  • Save ConnerWill/1a4427c254cb037b28a2083e4bdac71d to your computer and use it in GitHub Desktop.
Save ConnerWill/1a4427c254cb037b28a2083e4bdac71d to your computer and use it in GitHub Desktop.
GCODE for ender3 pro config
; [---------------------------------------------------------------------------]
; | Custom settings setup |
; |---------------------------------------------------------------------------|
; | Printer: Ender 3 Pro |
; | Board: BTT SKR Mini E3 v2.0 |
; | Extruder: Creality Sprite Direct Drive |
; | |
; [---------------------------------------------------------------------------]
; Set probe offset: https://marlinfw.org/docs/gcode/M851.html
M851 X-36.5 Y-40
; Set E-steps: https://marlinfw.org/docs/gcode/M092.html
M92 E424.9
; Set software endstops: https://marlinfw.org/docs/gcode/M211
M211 X220 Y220
; Save settings to EEPROM: https://marlinfw.org/docs/gcode/M500
M500
; Report settings: https://marlinfw.org/docs/gcode/M503
M503
; [---------------------------------------------------------------------------]
; | PID Bed Tune |
; |---------------------------------------------------------------------------|
; | Printer: Ender 3 Pro |
; | Board: BTT SKR Mini E3 v2.0 |
; | Extruder: Creality Sprite Direct Drive |
; | |
; [---------------------------------------------------------------------------]
; Auto-tune bed at 60 °C for 8 cycles: https://marlinfw.org/docs/gcode/M303.html
M303 E-1 C8 S60
; Save settings to EEPROM: https://marlinfw.org/docs/gcode/M500
M500
; Report settings: https://marlinfw.org/docs/gcode/M503
M503
; [---------------------------------------------------------------------------]
; | PID Extruder Tune |
; |---------------------------------------------------------------------------|
; | Printer: Ender 3 Pro |
; | Board: BTT SKR Mini E3 v2.0 |
; | Extruder: Creality Sprite Direct Drive |
; | |
; [---------------------------------------------------------------------------]
; Auto-tune hotend at 205 °C for 8 cycles: https://marlinfw.org/docs/gcode/M303.html
M303 E0 C8 S205
; Save settings to EEPROM: https://marlinfw.org/docs/gcode/M500
M500
; Report settings: https://marlinfw.org/docs/gcode/M503
M503
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment