Difference between revisions of "Printing with Cura"

From Jubilee
Jump to navigation Jump to search
(Created page with "Please keep in mind this is a work in progress. I have my Jubilee printing how I feel is relatively well with cura but at the same time my config is a mismash of me probably m...")
 
Line 4: Line 4:
 
[[File:CuraMachineSettings.png|thumb|Cura Machine Settings for Jubilee (3 Tools)]]
 
[[File:CuraMachineSettings.png|thumb|Cura Machine Settings for Jubilee (3 Tools)]]
  
This is my start gcode section in machine settings in Cura
+
;This is my start gcode section in machine settings in Cura
  
G28 ;homes the printers x y z and u
+
:G28 ;homes the printers x y z and u
T0 P0 ;Activates tool with P0 so so its standby and set temperature can be set without picking it up
+
:T0 P0 ;Activates tool with P0 so so its standby and set temperature can be set without picking it up
T1 P0 ;Activates tool with P0 so so its standby and set temperature can be set without picking it up
+
:T1 P0 ;Activates tool with P0 so so its standby and set temperature can be set without picking it up
T2 P0 ;Activates tool with P0 so so its standby and set temperature can be set without picking it up
+
:T2 P0 ;Activates tool with P0 so so its standby and set temperature can be set without picking it up
G10 P0 S205 R160 ;Me setting temps as I use the printer settings addon to prevent cura from sending temp info due to how weird my duet reacted to it
+
:G10 P0 S205 R160 ;Me setting temps as I use the printer settings addon to prevent cura from sending temp info due to how weird my duet reacted to it
G10 P1 S185 R160 ;Me setting temps as I use the printer settings addon to prevent cura from sending temp info due to how weird my duet reacted to it
+
:G10 P1 S185 R160 ;Me setting temps as I use the printer settings addon to prevent cura from sending temp info due to how weird my duet reacted to it
G10 P2 S205 R160 ;Me setting temps as I use the printer settings addon to prevent cura from sending temp info due to how weird my duet reacted to it
+
:G10 P2 S205 R160 ;Me setting temps as I use the printer settings addon to prevent cura from sending temp info due to how weird my duet reacted to it
T-1 P0 ;Makes all tool inactive but will maintain standby temp
+
:T-1 P0 ;Makes all tool inactive but will maintain standby temp
G32 ;3 point bed level
+
:G32 ;3 point bed level
M190 S65 ;Setting my bed temp
+
:M190 S65 ;Setting my bed temp
G29 S1 ;Loading my mesh?
+
:G29 S1 ;Loading my mesh?
  
Here is my end gcode section
+
;Here is my end gcode section
  
M104 S0 ;Sets temp to 0
+
:M104 S0 ;Sets temp to 0
M140 S0 ;Sets temp to 0
+
:M140 S0 ;Sets temp to 0
G92 E1  ;Extrudes fillament?
+
:G92 E1  ;Extrudes fillament?
G1 E-1 F300 :Retract the filament
+
:G1 E-1 F300 :Retract the filament
G91 G1 Z20 F600 ;drops Z so I can stop buying limit switches
+
:G91 G1 Z20 F600 ;drops Z so I can stop buying limit switches
T-1 ;Sets all tools to inactive
+
:T-1 ;Sets all tools to inactive
G1 Y0 X0 F4000 ;move the carriage out of the way
+
:G1 Y0 X0 F4000 ;move the carriage out of the way
M84 ;Stop the idle hold on all axis and extruder
+
:M84 ;Stop the idle hold on all axis and extruder

Revision as of 21:06, 20 July 2021

Please keep in mind this is a work in progress. I have my Jubilee printing how I feel is relatively well with cura but at the same time my config is a mismash of me probably making changes that aren't needed so I would use this is a vary rough guidelines Special thanks to everyone who helped me get it this far. Hopefully we can form this into a more cohesive guide. -Tsunaminaut


Cura Machine Settings for Jubilee (3 Tools)
This is my start gcode section in machine settings in Cura
G28 ;homes the printers x y z and u
T0 P0 ;Activates tool with P0 so so its standby and set temperature can be set without picking it up
T1 P0 ;Activates tool with P0 so so its standby and set temperature can be set without picking it up
T2 P0 ;Activates tool with P0 so so its standby and set temperature can be set without picking it up
G10 P0 S205 R160 ;Me setting temps as I use the printer settings addon to prevent cura from sending temp info due to how weird my duet reacted to it
G10 P1 S185 R160 ;Me setting temps as I use the printer settings addon to prevent cura from sending temp info due to how weird my duet reacted to it
G10 P2 S205 R160 ;Me setting temps as I use the printer settings addon to prevent cura from sending temp info due to how weird my duet reacted to it
T-1 P0 ;Makes all tool inactive but will maintain standby temp
G32 ;3 point bed level
M190 S65 ;Setting my bed temp
G29 S1 ;Loading my mesh?
Here is my end gcode section
M104 S0 ;Sets temp to 0
M140 S0 ;Sets temp to 0
G92 E1 ;Extrudes fillament?
G1 E-1 F300 :Retract the filament
G91 G1 Z20 F600 ;drops Z so I can stop buying limit switches
T-1 ;Sets all tools to inactive
G1 Y0 X0 F4000 ;move the carriage out of the way
M84 ;Stop the idle hold on all axis and extruder