I think this is what you want:
And to get you started:
;Layer count: 3039 //I think this is self explanatory
;LAYER:0 //I think this is self explanatory
M107 //Print cooling fan off
G0 F9000 X98.997 Y100.966 Z0.300 //Set Feedrate to 9000 (F) and do a rapid linear move (G0) to the specified XYZ coordinates
;TYPE:SKIRT //Start printing skirt
G1 F1200 X106.740 Y95.343 E1.14832 //Feedrate to 1200 and Linear move (G1) to the specified XY coordinate, while extruding 1.14832 mm. filament
etc.
Btw. are you sure those are the first lines of code?
I would expect something like this to come before it (Kind of a bad example as this is a 1 layer print with almost no time or filament used... but it was something I had lying on my desktop and I guess you get the idea):
M190 S60.000000 ;Set bed target temp. to 60 degrees and wait
M109 S220.000000 ;Set hotend target temp to 220 degrees and wait
;Sliced at: Tue 18-08-2015 21:19:56
;Basic settings: Layer height: 0.2 Walls: 0.8 Fill: 0
;Print time: 0 minutes
;Filament used: 0.02m 0.0g
;Filament cost: None
;M190 S60 ;Uncomment to add your own bed temperature line
;M109 S220 ;Uncomment to add your own temperature line
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 Z15.0 F12000 ;move the platform down 15mm
G92 E0 ;zero the extruded length
G1 F200 E3 ;extrude 3mm of feed stock
G92 E0 ;zero the extruded length again
G1 F12000
;Put printing message on LCD screen
M117 Printing...
Edited by Guest-
1
Recommended Posts
gr5 2,295
do a google of "reprap gcodes" and they are all explained in that web page.
Link to post
Share on other sites