Start, End Gcode.

Post Reply
Steveo86
Posts: 3
Joined: Fri Feb 22, 2019 4:07 pm

Start, End Gcode.

Post by Steveo86 » Sun Feb 24, 2019 1:19 am

i was wondering if anybody would be willing to help me write a start and end gcode for my geeetech a10 i'm using cura. i have a bltouch so would like to have bed levelling in it and working. i've tried but when my print moves from a purge line to the main print it doesn't seem to be in the correct position for printing as nothing sticks and i end up with a big blob of filament on my hotend and i have to stop the print

Jarda3d
Posts: 189
Joined: Sat Jan 26, 2019 8:42 am

Re: Start, End Gcode.

Post by Jarda3d » Tue Apr 02, 2019 4:22 pm

Here is my gcode from Slic3r. You need to change variables inside for your slicer software.

Use at least 3 skirt circles in your slicer software.

Start

Code: Select all

M107 ; ALL FAN OFF
M117 Preheating... 
M140 S[first_layer_bed_temperature]  ; and continue
M109 S150      ; partial hotend temp and wait
;----------------------------------------
M117 Auto leveling;
;M420 S1
G29 V3; run auto level
;----------------------------------------
M117 full heating... 
M104 S[first_layer_temperature]      ; set final hotend temp and continue
G28                                  ; go to HOME
G1 X12 Y5 Z1 F300
G1 X12 Y5 Z0 F300           ; stop leaking hotend
M109 S[first_layer_temperature]      ; final hotend temp and wait for it
M190 S[first_layer_bed_temperature]  ; and wait for it
;----------------------------------------
M117 Priming
M300 S500 P200  ; beep

G90                                  ; absolute position
G21                                  ; milimeters
G92 E0                               ; position E0
M83                                  ; 
G1 Z0.4 F1000.0                      ; 
G1 X12.0 Y5.0 F1000.0
G1 Y68.0 E15.0 F1000.0
G1 Y115.0 E22 F1000.0
G1 E-7 F2400  ;retract the filament a bit before lifting the nozzle  to release some of the pressure
G1 Z0.5 F1000.0                      ; 
M82
G92 E0
M117 Printing...
M900 K240 ; for bowden extruder only, A10M

End

Code: Select all

M117 Finished printing. ;Put printing message on LCD screen

G91 ;relative positioning
G1 E-7 F2400  ;retract the filament a bit before lifting the nozzle  to release some of the pressure
G1 Z+0.5 X-20 Y-20 F9000 ;move Z up a bit

G28 X ;move X to min endstops so the head is out of the way

M104 S0 ;extruder heater off
M140 S0 ;heated bed heater off (if you have it)

G28 Y ;move Y to min endstops so the head is out of the way
G1 Y200 F6000  ;
M84 ;steppers off
M0 H.O.T.O.V.O.

A10M Slic3r profile: here and fresh on github (lot of tips here)
A10 Slic3r profile: here
TIP: tight all screws and wheels (except right side of Z axis) and re-align frame while assembly. And silence it.

User avatar
_kaktus_
Site Admin
Posts: 1260
Joined: Fri Dec 15, 2017 10:06 pm
Location: PL
Contact:

Re: Start, End Gcode.

Post by _kaktus_ » Tue Apr 02, 2019 6:19 pm

Hi.
:mrgreen:

It looks great.
:D
On the forum I help to use the rod, I don't give fish.
Geeetech Prusa I3 M201 Dual extruder Mixcolor 3D printer, bought 2017-12-19, already built, in the cognitive and improvement phase
Geeetech filament, ABS only
Geeetech 3D WiFi Module for 3D Printer, bought 2018-04-15, He got a new life, and still lies in a drawer.
Positively frenzied customer of Getech Technology.

Post Reply