//Machine Setup N10 G21 //Set units to mm N20 G90 //Set Absolute Positioning N30 G59 //XY Plane N40 M104 S225 //Set the extruder temperature to 225 C N50 M108 R5.0 //Set extruder speed N60 M103 //Extruder is turned OFF //Homing Position //NOTE Origin of part is in the bottom left corener of Front View N70 G00 x0 y0 z300 //Moves Tooling off the build plate vertically N80 G00 x-30 y-30 z300 //Moves Tooling away from print N90 M105 //Get Extruder Temperature (Heat up to 225C) N100 G00 x0 y0 z300 // N110 G00 x0 y0 z.1 //Z axis is slighlty off the build plate to //accommodate for the material that is printed //Part 1 L Block Print N120 G01 x400 y0 z.1 N130 G01 x400 y0 z115.1 N140 G01 x140 y0 z115.1 N150 G01 x140 y0 z250.1 N160 G01 x0 y0 z250.1 N170 G01 x0 y0 z.1 N170 G01 x0 y300 z,1 N180 G01 x0 y300 z250.1 N190 G01 x0 y0 z250.1 N200 G01 x140 y0 z250.1 //Trace Line N210 G01 x140 y300 z250.1 N220 G01 x0 y300 z250.1 //Trace Line N230 G01 x0 y300 z.1 N240 G01 x400 y300 z.1 N250 G01 x400 y0 z.1 N260 G01 x400 y0 z115.1 //Trace Line N270 G01 x400 y300 z115.1 N280 G01 x400 y300 z.1 N290 G01 x400 y300 z115.1 //Trace Line N300 G01 x140 y300 z115.1 N310 G01 x140 y0 z115.1 N320 G01 x140 y300 z115.1 //Trace Line N330 G01 x140 y300 z250.1 //Return to Home N340 G00 x140 y300 z300 //Moves the tool above the part N350 G00 x-30 y-30 z300 //Moves the tool to home position //Program Shutdown N360 G104 P100 //Pause 1000 seconds N370 M103 T0//Extruder Off N380 M18 //Motors Off N390 M104 S0 //Set Extruder Head Temperature to 0 C N400 M02 //End of Program