User Tools

Site Tools


start.gcode

Differences

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

Link to this comparison view

Next revision
Previous revision
start.gcode [2015/08/06 09:44]
admin created
start.gcode [2019/03/20 04:21] (current)
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>​