UltiMaker uses functional, analytical and tracking cookies. Tracking cookies enhance your experience on our website and may also collect your personal data outside of Ultimaker websites. If you agree with the use of tracking cookies, click “I agree, continue browsing”. You can withdraw your consent at any time. If you do not consent with the use of tracking cookies, click “Refuse”. You can find more information about cookies on our Privacy and Cookie Policy page.
Problems with second extruder in CURA. (Leapfrog Creatr HS)
Posted
· Problems with second extruder in CURA. (Leapfrog Creatr HS)
Hi Michael,
I had the same issue as you and you made me understand what is wrong. The issue is located in the start g-code. It is actually missing the setup for the left extruder.
I've managed to solve this by duplicating these lines and adding a start line for each extruder
https://marlinfw.org/docs/gcode/T001-T002.html
printer start g-code
M107 ; start with the fan off
G28 X0 Y0 ; home XY axes
G28 Z0 ; home Z
G92 X0 Y0 Z0 E0 ; reset software positions
;*** Start Dual Nozzle/Bed Preheating ***
M140 S{material_bed_temperature_layer_0} ; start preheating the bed
M104 S{material_print_temperature_layer_0} T0 ; start preheating hotend
M104 S{material_print_temperature_layer_0} T1 ; start preheating hotend
;*** Wait until temperature reached ***
M190 S{material_bed_temperature_layer_0} ; heat to Cura Bed setting
M109 S{material_print_temperature_layer_0} T0 ; heat to Cura Hotend
M109 S{material_print_temperature_layer_0} T1 ; heat to Cura Hotend
;*** End Preheating ***
G1 Z15.0 F180
T0
G92 E0 ; zero the extruded length
T1
G92 E0 ; zero the extruded length
G1 E3 F200
T0
G92 E0 ; zero the extruded length
T1
G92 E0 ; zero the extruded length
G1 F225
Left extruder start g-code
T1 ; Selecting tool
Right extruder start g-code
T0 ; Selecting tool
fyi; left it T1 and right is T0. It is not a typo
Link to post
Share on other sites
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Here comes Cura 5.9 and in this stable release we have lots of material and printer profiles for UltiMaker printers, including the newly released Sketch Sprint. Additionally, scarf seams have been introduced alongside even more print settings and improvements. Check out the rest of this article to find out the details on all of that and more
We are happy to announce the next evolution in the UltiMaker 3D printer lineup: the UltiMaker Factor 4 industrial-grade 3D printer, designed to take manufacturing to new levels of efficiency and reliability. Factor 4 is an end-to-end 3D printing solution for light industrial applications
Recommended Posts
frankforpresident 0
Hi Michael,
I had the same issue as you and you made me understand what is wrong. The issue is located in the start g-code. It is actually missing the setup for the left extruder.
I've managed to solve this by duplicating these lines and adding a start line for each extruder
https://marlinfw.org/docs/gcode/T001-T002.html
printer start g-code
Left extruder start g-code
Right extruder start g-code
fyi; left it T1 and right is T0. It is not a typo
Link to post
Share on other sites