Site Tools


Hotfix release available: 2025-05-14a "Librarian". upgrade now! [56.1] (what's this?)
New release available: 2025-05-14 "Librarian". upgrade now! [56] (what's this?)
start.gcode

Differences

This shows you the differences between two versions of the page.


start.gcode [2024/10/31 15:26] (current) – created - external edit 127.0.0.1
Line 1: Line 1:
 +<code>
 +(**** beginning of start.gcode ****)
 +(This is start code for The Replicator running a single material print)
 +M73 P0 (enable build progress)
 +M103 (disable RPM)
 +G21 (set units to mm)
 +G90 (set positioning to absolute)
 +(**** begin homing ****)
 +G162 X Y F4000 (home XY axes maximum)
 +G161 Z F400 (home Z axis minimum)
 +G92 Z-5 (set Z to -5)
 +G1 Z0.0 (move Z to "0")
 +G161 Z F100 (home Z axis minimum)
 +M132 X Y Z A B (Recall stored home offsets for XYZAB axis)
 +(**** end homing ****)
 +G92 X146.5 Y73 Z5
 +G1 X105 Y-60 Z10 F4000.0 (move to waiting position)
 +G130 X0 Y0 A0 B0 (Set Stepper motor Vref to lower value while heating)
 +G130 X127 Y127 A127 B127 (Set Stepper motor Vref to defaults)
 +M6 T0
 +M108 T0
 +G0 X105 Y-60 (Position Nozzle)
 +G1 Z0.6 F300    (Position Height)
 +G92 E0 (Set E to 0)
 +G1 X90.0 E15 F300 (Extrude 4mm of filament)
 +G92 E0 (Set E to 0 again)
 +G1 Z0.0 F300    (Position Height)
 +(**** end of start.gcode ****)
 +</code>