Last active
February 18, 2025 15:49
-
-
Save ConnerWill/1a4427c254cb037b28a2083e4bdac71d to your computer and use it in GitHub Desktop.
GCODE for ender3 pro config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; [---------------------------------------------------------------------------] | |
; | 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; [---------------------------------------------------------------------------] | |
; | 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; [---------------------------------------------------------------------------] | |
; | 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