G-code for retraction at the end March 10, 2016 01:34PM |
Registered: 8 years ago Posts: 461 |
Re: G-code for retraction at the end March 10, 2016 01:52PM |
Registered: 8 years ago Posts: 637 |
Re: G-code for retraction at the end March 11, 2016 02:41AM |
Registered: 8 years ago Posts: 57 |
Re: G-code for retraction at the end March 12, 2016 04:47PM |
Registered: 8 years ago Posts: 461 |
Re: G-code for retraction at the end March 13, 2016 03:28AM |
Registered: 8 years ago Posts: 1,699 |
Re: G-code for retraction at the end March 13, 2016 05:03AM |
Registered: 8 years ago Posts: 461 |
Re: G-code for retraction at the end March 13, 2016 08:38AM |
Registered: 8 years ago Posts: 1,699 |
Re: G-code for retraction at the end March 15, 2016 01:56PM |
Registered: 8 years ago Posts: 461 |
Re: G-code for retraction at the end March 16, 2016 10:02AM |
Registered: 8 years ago Posts: 461 |
;Sliced at: {day} {date} {time} ;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density} ;Print time: {print_time} ;Filament used: {filament_amount}m {filament_weight}g ;Filament cost: {filament_cost} G21 ;metric values G90 ;absolute positioning M83 ; use relative distances for extrusion M203 X6000 Y6000 Z500 E3000 ; will allow 100mm/s sliced gcodes to work... if they have time/distance to get up to speed G1 Z5 F200 ; lift nozzle G1 X2 Y50 F2000; Go to wait for warm position M116; Wait for all temperatures
M140 S0 ;heated bed heater off M104 S0 ;extruder heater off G92 E0 ; set extruder value back to 0 G1 E-15 F300 ;retract 15mm filament speed 300 G1 X0 Y210 ; park the machine M0; stop
Re: G-code for retraction at the end March 16, 2016 10:57AM |
Registered: 9 years ago Posts: 1,230 |
Re: G-code for retraction at the end March 16, 2016 11:25AM |
Registered: 9 years ago Posts: 2,472 |
Quote
Sardi
New issue.
This is my g-code
<...>
end
M140 S0 ;heated bed heater off M104 S0 ;extruder heater off G92 E0 ; set extruder value back to 0 G1 E-15 F300 ;retract 15mm filament speed 300 G1 X0 Y210 ; park the machine M0; stop
Now it does the retract of 15mm, but the G1 X0 Y210 is done with the ultra slow speed of 1mms and I dont know what is the cause of that.
Re: G-code for retraction at the end March 17, 2016 01:11PM |
Registered: 8 years ago Posts: 461 |