├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── BugReport.yml │ ├── FeatureRequest.yml │ └── config.yml ├── Calibration and Tuning ├── Assisted Manual Bed Leveling │ ├── 0_Auto Bed Level Assist.g │ ├── 0_Auto Probe Trigger Height Assist.g │ ├── 0_Grid Compensation Assist.g │ ├── 1_Center Nozzle on Bed │ ├── 1_Center Probe on Bed │ ├── 1_Leveling Position #1 │ ├── 1_Leveling Position #2 │ ├── 1_Leveling Position #3 │ ├── 2_Move to Z0 │ ├── 2_Move to Z1 │ ├── 2_Move to Z10 │ ├── 3_Bed Down 0.02 │ ├── 3_Bed Down 0.1 │ ├── 3_Bed Up 0.02 │ ├── 3_Bed Up 0.1 │ ├── G30 S-1 (Probe Measure) │ ├── Set Z=0 │ └── Set Z=10 ├── BLTouch │ ├── Center Probe.g │ ├── Probe Alarm Release.g │ ├── Probe Deploy.g │ ├── Probe Retract.g │ ├── Probe Self-Test.g │ ├── calibrate_BLtouch.g │ └── call_calibrate_BLtouch.g ├── Diagnostics │ ├── MotorTest.g │ ├── Probe_Repeatability_test │ ├── Reset Wifi Module.g │ └── SystemDump.g ├── README.md ├── Tuning non linear extrusion │ └── Non-Linear_extrusion_test └── Tuning pressure advance │ ├── 01_Turn Off PA │ ├── 02_S0.1 │ ├── 03_S0.09 │ ├── 04_S0.08 │ ├── 05_S0.07 │ ├── 06_S0.06 │ ├── 07_S0.05 │ ├── 08_S0.04 │ ├── 09_S0.03 │ ├── 0_Report PA Value │ ├── 10_S0.02 │ ├── 11_S0.01 │ ├── PA_adjust_height.g │ └── PA_adjust_layer.g ├── Other └── Tunes │ ├── Charge!.g │ ├── EndPrint.g │ ├── LuckyTune.g │ ├── StartPrint.g │ ├── Startup.g │ ├── Zelda.g │ └── Zelda2.g ├── Printer management ├── End │ ├── E motors off │ └── motors off ├── Filament │ ├── ColdPullFilamentUnload │ ├── E motors off │ ├── Extrude 5mm Slow │ ├── KosselXL │ │ ├── Load filament │ │ └── Unload filament │ ├── Phaedrux-Preheat PETG.g │ ├── Phaedrux-Preheat PLA.g │ └── Retract 5mm ├── General │ └── ResetTempFault ├── Prepare │ └── E motors off ├── README.md └── Start │ └── preheat_85_235 ├── README.md └── System Macros ├── Bed probing ├── BigBoxIDEX │ └── bed.g └── KosselXL │ └── bed.g ├── Homing ├── BigBoxIDEX │ ├── homeall.g │ ├── homeu.g │ ├── homex.g │ ├── homey.g │ └── homez.g └── KosselXL │ └── homedelta.g ├── Pausing and power fail └── KosselXL │ ├── pause.g │ └── resume.g ├── README.md └── Tool change └── BigBoxIDEX ├── tfree0.g ├── tfree1.g ├── tfree2.g ├── tpost0.g ├── tpost1.g └── tpost2.g /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BugReport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/.github/ISSUE_TEMPLATE/BugReport.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FeatureRequest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/.github/ISSUE_TEMPLATE/FeatureRequest.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /Calibration and Tuning/Assisted Manual Bed Leveling/0_Auto Bed Level Assist.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/Assisted Manual Bed Leveling/0_Auto Bed Level Assist.g -------------------------------------------------------------------------------- /Calibration and Tuning/Assisted Manual Bed Leveling/0_Auto Probe Trigger Height Assist.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/Assisted Manual Bed Leveling/0_Auto Probe Trigger Height Assist.g -------------------------------------------------------------------------------- /Calibration and Tuning/Assisted Manual Bed Leveling/0_Grid Compensation Assist.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/Assisted Manual Bed Leveling/0_Grid Compensation Assist.g -------------------------------------------------------------------------------- /Calibration and Tuning/Assisted Manual Bed Leveling/1_Center Nozzle on Bed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/Assisted Manual Bed Leveling/1_Center Nozzle on Bed -------------------------------------------------------------------------------- /Calibration and Tuning/Assisted Manual Bed Leveling/1_Center Probe on Bed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/Assisted Manual Bed Leveling/1_Center Probe on Bed -------------------------------------------------------------------------------- /Calibration and Tuning/Assisted Manual Bed Leveling/1_Leveling Position #1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/Assisted Manual Bed Leveling/1_Leveling Position #1 -------------------------------------------------------------------------------- /Calibration and Tuning/Assisted Manual Bed Leveling/1_Leveling Position #2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/Assisted Manual Bed Leveling/1_Leveling Position #2 -------------------------------------------------------------------------------- /Calibration and Tuning/Assisted Manual Bed Leveling/1_Leveling Position #3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/Assisted Manual Bed Leveling/1_Leveling Position #3 -------------------------------------------------------------------------------- /Calibration and Tuning/Assisted Manual Bed Leveling/2_Move to Z0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/Assisted Manual Bed Leveling/2_Move to Z0 -------------------------------------------------------------------------------- /Calibration and Tuning/Assisted Manual Bed Leveling/2_Move to Z1: -------------------------------------------------------------------------------- 1 | G90 ; Absolute 2 | G1 Z1 -------------------------------------------------------------------------------- /Calibration and Tuning/Assisted Manual Bed Leveling/2_Move to Z10: -------------------------------------------------------------------------------- 1 | G90 ; Absolute 2 | G1 Z10 -------------------------------------------------------------------------------- /Calibration and Tuning/Assisted Manual Bed Leveling/3_Bed Down 0.02: -------------------------------------------------------------------------------- 1 | G91 ; Relative 2 | G1 Z0.02 -------------------------------------------------------------------------------- /Calibration and Tuning/Assisted Manual Bed Leveling/3_Bed Down 0.1: -------------------------------------------------------------------------------- 1 | G91 ; Relative 2 | G1 Z0.1 -------------------------------------------------------------------------------- /Calibration and Tuning/Assisted Manual Bed Leveling/3_Bed Up 0.02: -------------------------------------------------------------------------------- 1 | G91 ; Relative 2 | G1 Z-0.02 -------------------------------------------------------------------------------- /Calibration and Tuning/Assisted Manual Bed Leveling/3_Bed Up 0.1: -------------------------------------------------------------------------------- 1 | G91 2 | G1 Z-0.1 -------------------------------------------------------------------------------- /Calibration and Tuning/Assisted Manual Bed Leveling/G30 S-1 (Probe Measure): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/Assisted Manual Bed Leveling/G30 S-1 (Probe Measure) -------------------------------------------------------------------------------- /Calibration and Tuning/Assisted Manual Bed Leveling/Set Z=0: -------------------------------------------------------------------------------- 1 | G92 Z0 -------------------------------------------------------------------------------- /Calibration and Tuning/Assisted Manual Bed Leveling/Set Z=10: -------------------------------------------------------------------------------- 1 | G92 Z10 -------------------------------------------------------------------------------- /Calibration and Tuning/BLTouch/Center Probe.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/BLTouch/Center Probe.g -------------------------------------------------------------------------------- /Calibration and Tuning/BLTouch/Probe Alarm Release.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/BLTouch/Probe Alarm Release.g -------------------------------------------------------------------------------- /Calibration and Tuning/BLTouch/Probe Deploy.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/BLTouch/Probe Deploy.g -------------------------------------------------------------------------------- /Calibration and Tuning/BLTouch/Probe Retract.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/BLTouch/Probe Retract.g -------------------------------------------------------------------------------- /Calibration and Tuning/BLTouch/Probe Self-Test.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/BLTouch/Probe Self-Test.g -------------------------------------------------------------------------------- /Calibration and Tuning/BLTouch/calibrate_BLtouch.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/BLTouch/calibrate_BLtouch.g -------------------------------------------------------------------------------- /Calibration and Tuning/BLTouch/call_calibrate_BLtouch.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/BLTouch/call_calibrate_BLtouch.g -------------------------------------------------------------------------------- /Calibration and Tuning/Diagnostics/MotorTest.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/Diagnostics/MotorTest.g -------------------------------------------------------------------------------- /Calibration and Tuning/Diagnostics/Probe_Repeatability_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/Diagnostics/Probe_Repeatability_test -------------------------------------------------------------------------------- /Calibration and Tuning/Diagnostics/Reset Wifi Module.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/Diagnostics/Reset Wifi Module.g -------------------------------------------------------------------------------- /Calibration and Tuning/Diagnostics/SystemDump.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/Diagnostics/SystemDump.g -------------------------------------------------------------------------------- /Calibration and Tuning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/README.md -------------------------------------------------------------------------------- /Calibration and Tuning/Tuning non linear extrusion/Non-Linear_extrusion_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/Tuning non linear extrusion/Non-Linear_extrusion_test -------------------------------------------------------------------------------- /Calibration and Tuning/Tuning pressure advance/01_Turn Off PA: -------------------------------------------------------------------------------- 1 | M572 D0 S0 -------------------------------------------------------------------------------- /Calibration and Tuning/Tuning pressure advance/02_S0.1: -------------------------------------------------------------------------------- 1 | M572 D0 S0.1 -------------------------------------------------------------------------------- /Calibration and Tuning/Tuning pressure advance/03_S0.09: -------------------------------------------------------------------------------- 1 | M572 D0 S0.09 -------------------------------------------------------------------------------- /Calibration and Tuning/Tuning pressure advance/04_S0.08: -------------------------------------------------------------------------------- 1 | M572 D0 S0.08 -------------------------------------------------------------------------------- /Calibration and Tuning/Tuning pressure advance/05_S0.07: -------------------------------------------------------------------------------- 1 | M572 D0 S0.07 -------------------------------------------------------------------------------- /Calibration and Tuning/Tuning pressure advance/06_S0.06: -------------------------------------------------------------------------------- 1 | M572 D0 S0.06 -------------------------------------------------------------------------------- /Calibration and Tuning/Tuning pressure advance/07_S0.05: -------------------------------------------------------------------------------- 1 | M572 D0 S0.05 -------------------------------------------------------------------------------- /Calibration and Tuning/Tuning pressure advance/08_S0.04: -------------------------------------------------------------------------------- 1 | M572 D0 S0.04 -------------------------------------------------------------------------------- /Calibration and Tuning/Tuning pressure advance/09_S0.03: -------------------------------------------------------------------------------- 1 | M572 D0 S0.03 -------------------------------------------------------------------------------- /Calibration and Tuning/Tuning pressure advance/0_Report PA Value: -------------------------------------------------------------------------------- 1 | M572 D0 -------------------------------------------------------------------------------- /Calibration and Tuning/Tuning pressure advance/10_S0.02: -------------------------------------------------------------------------------- 1 | M572 D0 S0.02 -------------------------------------------------------------------------------- /Calibration and Tuning/Tuning pressure advance/11_S0.01: -------------------------------------------------------------------------------- 1 | M572 D0 S0.01 -------------------------------------------------------------------------------- /Calibration and Tuning/Tuning pressure advance/PA_adjust_height.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/Tuning pressure advance/PA_adjust_height.g -------------------------------------------------------------------------------- /Calibration and Tuning/Tuning pressure advance/PA_adjust_layer.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Calibration and Tuning/Tuning pressure advance/PA_adjust_layer.g -------------------------------------------------------------------------------- /Other/Tunes/Charge!.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Other/Tunes/Charge!.g -------------------------------------------------------------------------------- /Other/Tunes/EndPrint.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Other/Tunes/EndPrint.g -------------------------------------------------------------------------------- /Other/Tunes/LuckyTune.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Other/Tunes/LuckyTune.g -------------------------------------------------------------------------------- /Other/Tunes/StartPrint.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Other/Tunes/StartPrint.g -------------------------------------------------------------------------------- /Other/Tunes/Startup.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Other/Tunes/Startup.g -------------------------------------------------------------------------------- /Other/Tunes/Zelda.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Other/Tunes/Zelda.g -------------------------------------------------------------------------------- /Other/Tunes/Zelda2.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Other/Tunes/Zelda2.g -------------------------------------------------------------------------------- /Printer management/End/E motors off: -------------------------------------------------------------------------------- 1 | ; Turn extruder motors off 2 | M84 E0:1 3 | -------------------------------------------------------------------------------- /Printer management/End/motors off: -------------------------------------------------------------------------------- 1 | ; Turn all motors off 2 | M84 3 | -------------------------------------------------------------------------------- /Printer management/Filament/ColdPullFilamentUnload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Printer management/Filament/ColdPullFilamentUnload -------------------------------------------------------------------------------- /Printer management/Filament/E motors off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Printer management/Filament/E motors off -------------------------------------------------------------------------------- /Printer management/Filament/Extrude 5mm Slow: -------------------------------------------------------------------------------- 1 | ; Extrude 5mm filament 2 | G1 E5 F300 3 | -------------------------------------------------------------------------------- /Printer management/Filament/KosselXL/Load filament: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Printer management/Filament/KosselXL/Load filament -------------------------------------------------------------------------------- /Printer management/Filament/KosselXL/Unload filament: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Printer management/Filament/KosselXL/Unload filament -------------------------------------------------------------------------------- /Printer management/Filament/Phaedrux-Preheat PETG.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Printer management/Filament/Phaedrux-Preheat PETG.g -------------------------------------------------------------------------------- /Printer management/Filament/Phaedrux-Preheat PLA.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Printer management/Filament/Phaedrux-Preheat PLA.g -------------------------------------------------------------------------------- /Printer management/Filament/Retract 5mm: -------------------------------------------------------------------------------- 1 | ; Retract 5mm filament 2 | G1 E-5 F2000 3 | -------------------------------------------------------------------------------- /Printer management/General/ResetTempFault: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Printer management/General/ResetTempFault -------------------------------------------------------------------------------- /Printer management/Prepare/E motors off: -------------------------------------------------------------------------------- 1 | ; Turn extruder motors off 2 | M84 E0:1 3 | -------------------------------------------------------------------------------- /Printer management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Printer management/README.md -------------------------------------------------------------------------------- /Printer management/Start/preheat_85_235: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/Printer management/Start/preheat_85_235 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/README.md -------------------------------------------------------------------------------- /System Macros/Bed probing/BigBoxIDEX/bed.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/System Macros/Bed probing/BigBoxIDEX/bed.g -------------------------------------------------------------------------------- /System Macros/Bed probing/KosselXL/bed.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/System Macros/Bed probing/KosselXL/bed.g -------------------------------------------------------------------------------- /System Macros/Homing/BigBoxIDEX/homeall.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/System Macros/Homing/BigBoxIDEX/homeall.g -------------------------------------------------------------------------------- /System Macros/Homing/BigBoxIDEX/homeu.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/System Macros/Homing/BigBoxIDEX/homeu.g -------------------------------------------------------------------------------- /System Macros/Homing/BigBoxIDEX/homex.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/System Macros/Homing/BigBoxIDEX/homex.g -------------------------------------------------------------------------------- /System Macros/Homing/BigBoxIDEX/homey.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/System Macros/Homing/BigBoxIDEX/homey.g -------------------------------------------------------------------------------- /System Macros/Homing/BigBoxIDEX/homez.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/System Macros/Homing/BigBoxIDEX/homez.g -------------------------------------------------------------------------------- /System Macros/Homing/KosselXL/homedelta.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/System Macros/Homing/KosselXL/homedelta.g -------------------------------------------------------------------------------- /System Macros/Pausing and power fail/KosselXL/pause.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/System Macros/Pausing and power fail/KosselXL/pause.g -------------------------------------------------------------------------------- /System Macros/Pausing and power fail/KosselXL/resume.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/System Macros/Pausing and power fail/KosselXL/resume.g -------------------------------------------------------------------------------- /System Macros/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/System Macros/README.md -------------------------------------------------------------------------------- /System Macros/Tool change/BigBoxIDEX/tfree0.g: -------------------------------------------------------------------------------- 1 | G1 S2 X-14 F6000 ; park the X carriage at -14mm 2 | 3 | -------------------------------------------------------------------------------- /System Macros/Tool change/BigBoxIDEX/tfree1.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/System Macros/Tool change/BigBoxIDEX/tfree1.g -------------------------------------------------------------------------------- /System Macros/Tool change/BigBoxIDEX/tfree2.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/System Macros/Tool change/BigBoxIDEX/tfree2.g -------------------------------------------------------------------------------- /System Macros/Tool change/BigBoxIDEX/tpost0.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/System Macros/Tool change/BigBoxIDEX/tpost0.g -------------------------------------------------------------------------------- /System Macros/Tool change/BigBoxIDEX/tpost1.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/System Macros/Tool change/BigBoxIDEX/tpost1.g -------------------------------------------------------------------------------- /System Macros/Tool change/BigBoxIDEX/tpost2.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duet3D/GcodeMacros/HEAD/System Macros/Tool change/BigBoxIDEX/tpost2.g --------------------------------------------------------------------------------