From 78f51dcf03ba59744a699f9b9a79e03422f04e0a Mon Sep 17 00:00:00 2001 From: Dobromir Popov Date: Wed, 2 Oct 2024 11:43:57 +0300 Subject: [PATCH] 3d printer cura settigns --- 3d printer/MachineSettings.gc | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 3d printer/MachineSettings.gc diff --git a/3d printer/MachineSettings.gc b/3d printer/MachineSettings.gc new file mode 100644 index 0000000..8de57d3 --- /dev/null +++ b/3d printer/MachineSettings.gc @@ -0,0 +1,33 @@ +; -- START GCODE -- +G21 ;metric values +G90 ;absolute positioning +M82 ;set extruder to absolute mode +M107 ;start with the fan off + +;G28 X0 Y0 ;move X/Y to min endstops +;G28 Z0 ;move Z to min endstops +;G1 Z1 F1000 ;move up slightly +;G1 Y60.0 Z0 E9.0 F1000.0;intro line +;G1 Y100.0 E21.5 F1000.0 ;continue line +;G92 E0 ;zero the extruded length again + +G28 ; Home all axes +G29 ; Bed Leveling Touch +G1 F80 +;Put printing message on LCD screen +M117 Printing... +; -- end of START GCODE -- + + + + +; -- END GCODE -- +M104 S0 ;extruder heater off +M140 S0 ;heated bed heater off (if you have it) +G91 ;relative positioning +G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure +G1 Z+0.5 E-5 X-20 Y-20 F80 ;move Z up a bit and retract filament even more +G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way +M84 ;steppers off +G90 ;absolute positioning +M107 ;turn the fan off; -- end of END GCODE -- \ No newline at end of file