3D Printers/FlashForge Creator Pro: Difference between revisions
Jump to navigation
Jump to search
→Cura 3 Settings for this Printer: start adding settings for the FlashForge
(Add Cura 3 settings section. (copy from Type A)) |
(→Cura 3 Settings for this Printer: start adding settings for the FlashForge) |
||
Line 42: | Line 42: | ||
... '''PRINTER TAB'''<br /> | ... '''PRINTER TAB'''<br /> | ||
'''Printer Settings''' | '''Printer Settings''' | ||
* X (Width): | * X (Width): 266 mm | ||
* Y (Depth): | * Y (Depth): 144 mm | ||
* Z (Height): | * Z (Height): 150 mm | ||
* Build plate shape: Rectangular | * Build plate shape: Rectangular | ||
* Origin at center: | * Origin at center: SELECTED | ||
* Heated bed: | * Heated bed: SELECTED | ||
* Gcode Flavor: Marlin | * Gcode Flavor: Marlin | ||
'''Printhead Settings''' | '''Printhead Settings''' | ||
* X min: | * X min: 100 mm | ||
* Y min: | * Y min: 10 mm | ||
* X max: | * X max: 100 mm | ||
* Y max: | * Y max: 10 mm | ||
* Gantry height: | * Gantry height: 40 mm | ||
* Number of Extruders: | * Number of Extruders: 2 | ||
'''Start Gcode''' | '''Start Gcode''' | ||
<code> | <code> | ||
; | M136 ; start build | ||
M73 P0 | |||
G90 ; absolute coordinates | |||
M140 S{print_bed_temperature} | |||
M104 S{print_temperature} T0 | |||
T0 ; home on the right nozzle | |||
G28 X Y Z ; home all axes at homing speed | |||
G92 E0 | G92 X0 Y0 Z0 A0 B0 ; set all coords to 0 for now | ||
G1 | G1 Z5 F500 ; move Z 5mm away so we can carefully hit the limit switch | ||
G92 E0 | G161 Z F100 ; home Z slowly | ||
M132 X Y Z ; recall stored home offsets for XYZ axes | |||
G1 X110 Y-72 Z30 F3300 ; move to waiting position | |||
M116 ; wait for temps | |||
G92 E0 ; set current extruder position as 0 so that E15 below makes sense | |||
G1 X110 Y-70 Z0.2 F2400.0 ; move to just on the bed | |||
G1 X110 Y70 E15 F1200.000 ; extrude a line of filament along the right edge of the bed | |||
G92 E0 ; set E to 0 again because the slicer's next extrusion is relative to this 0 | |||
</code> | </code> | ||
'''End Gcode''' | '''End Gcode''' | ||
<code> | <code> | ||
M104 S0 | |||
M104 S0 ;extruder heater off | M140 S0 | ||
G92 E1 | |||
G1 E-1 F300 | |||
G28 X0 Y0 | |||
M84 | |||
M104 T0 S0 ;extruder heater off | |||
M140 S0 ;heated bed heater off (if you have it) | M140 S0 ;heated bed heater off (if you have it) | ||
G91 ;relative positioning | G91 ;relative positioning | ||
Line 82: | Line 93: | ||
G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way | G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way | ||
M84 ;steppers off | M84 ;steppers off | ||
G90 ;absolute positioning | G90 ;absolute positioning</code> | ||
</code> | |||
... '''EXTRUDER 1 TAB'''<br /> | ... '''EXTRUDER 1 TAB'''<br /> | ||
* Material Diameter: 1.75 mm | |||
* Nozzle size: 0.4 mm | |||
... '''EXTRUDER 2 TAB'''<br /> | |||
* Material Diameter: 1.75 mm | * Material Diameter: 1.75 mm | ||
* Nozzle size: 0.4 mm | * Nozzle size: 0.4 mm |