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.
Ender 3 Neo is not in list of printers in Cura 5.1.1 for macOS
Posted
· Ender 3 Neo is not in list of printers in Cura 5.1.1 for macOS
Installing the Ender 3 Pro definition is fine. The regular Ender 3 definition has disallowed areas for the bed clips. Most people find that annoying.
The problem you will have right away is that the 3 Pro definition may not have the Auto-Level command in the StartUp Gcode. That only takes a second to fix, but you need to know what the command is. Generally, Creality uses G92.
This is part of the Ender 3 Pro startup gcode (even though it says Ender 3).
; Ender 3 Custom Start G-code
G92 E0 ; Reset Extruder
G28 ; Home all axes
M104 S{material_standby_temperature} ; Start heating up the nozzle most of the way
M190 S{material_bed_temperature_layer_0} ; Start heating the bed, wait until target temperature reached
M109 S{material_print_temperature_layer_0} ; Finish heating the nozzle
Add the three lines that I've highlighted in bold text:
; Ender 3 Custom Start G-code
G92 E0 ; Reset Extruder
G28 ; Home all axes
M104 S{material_standby_temperature} ; Start heating up the nozzle most of the way
M190 S{material_bed_temperature_layer_0} ; Start heating the bed, wait until target temperature reached
G29 ;Auto Bed Level
G1 F600 Z5 ;Move the nozzle up
G1 F6000 X0 Y0 ;Move to the left front corner
M109 S{material_print_temperature_layer_0} ; Finish heating the nozzle
So the machine will auto-home, the hot end will be hot but not enough to ooze filament during leveling, the bed will be allowed to get up to Initial Layer Bed Temperature, then the Auto Level will run, the print head will rise up a bit and then move to the corner so if there is any oozing it will happen away from the build area, and then the nozzle will heat up to Initial Layer Print Temperature.
You can find the StartUp Gcode by going to Settings / Printers / Manage Printers and then Machine Settings.
5
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
GregValiant 1,455
Installing the Ender 3 Pro definition is fine. The regular Ender 3 definition has disallowed areas for the bed clips. Most people find that annoying.
The problem you will have right away is that the 3 Pro definition may not have the Auto-Level command in the StartUp Gcode. That only takes a second to fix, but you need to know what the command is. Generally, Creality uses G92.
This is part of the Ender 3 Pro startup gcode (even though it says Ender 3).
; Ender 3 Custom Start G-code
G92 E0 ; Reset Extruder
G28 ; Home all axes
M104 S{material_standby_temperature} ; Start heating up the nozzle most of the way
M190 S{material_bed_temperature_layer_0} ; Start heating the bed, wait until target temperature reached
M109 S{material_print_temperature_layer_0} ; Finish heating the nozzle
Add the three lines that I've highlighted in bold text:
; Ender 3 Custom Start G-code
G92 E0 ; Reset Extruder
G28 ; Home all axes
M104 S{material_standby_temperature} ; Start heating up the nozzle most of the way
M190 S{material_bed_temperature_layer_0} ; Start heating the bed, wait until target temperature reached
G29 ;Auto Bed Level
G1 F600 Z5 ;Move the nozzle up
G1 F6000 X0 Y0 ;Move to the left front corner
M109 S{material_print_temperature_layer_0} ; Finish heating the nozzle
So the machine will auto-home, the hot end will be hot but not enough to ooze filament during leveling, the bed will be allowed to get up to Initial Layer Bed Temperature, then the Auto Level will run, the print head will rise up a bit and then move to the corner so if there is any oozing it will happen away from the build area, and then the nozzle will heat up to Initial Layer Print Temperature.
You can find the StartUp Gcode by going to Settings / Printers / Manage Printers and then Machine Settings.
Link to post
Share on other sites