//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 2 U Block Print N120 G01 x275 y0 z.1 N130 G01 x275 y0 z185.1 N140 G01 x215 y0 z185.1 N150 G01 x215 y0 z110.1 N160 G01 x60 y0 z110.1 N170 G01 x60 y0 z185.1 N180 G01 x0 y0 z185.1 N190 G01 x0 y0 z0 N200 G01 x0 y75 z0 N210 G01 x0 y75 z185.1 N220 G01 x0 y0 z185.1 N230 G01 x0 y75 z185.1 // Trace Line N240 G01 x60 y75 z185.1 N250 G01 x60 y0 z185.1 N250 G01 x60 y75 z185.1 //Trace Line N260 G01 x60 y75 z110.1 N270 G01 x60 y0 z110.1 N280 G01 x60 y75 z110.1 //Trace Line N290 G01 x215 y75 z110.1 N300 G01 x215 y0 z110.1 N310 G01 x215 y75 z110.1 //Trace Line N320 G01 x215 y75 z185.1 N330 G01 x215 y0 z185.1 N340 G01 x215 y75 z185.1 //Trace Line N350 G01 x275 y75 z185.1 N360 G01 x275 y0 z185.1 N370 G01 x275 y75 z185.1 //Trace Line N360 G01 x275 y75 z.1 N370 G01 x0 y75 z.1 N380 G01 x275 y75 z.1 //Trace Line N390 G01 x275 y0 z.1 //Return to Home N400 G00 x315 y0 z0 //Moves the tool above the part N410 G00 x315 y0 z250 N420 G00 x-30 y-30 z300 //Moves the tool to home position //Program Shutdown N430 G104 P100 //Pause 1000 seconds N440 M103 T0//Extruder Off N450 M18 //Motors Off N460 M104 S0 //Set Extruder Head Temperature to 0 C N470 M02 //End of Program