I have made the changes, but I am guessing it is something within the cura slicer settings not the start gcode.
Removed the fan set speed and changed the m140 and m104 commands.
it preheats normally. Bed first then hotend. But when the print starts, the bed, hotend and the filament extruder are all disabled. It trys to print, but the fillimant will not extrude because the stepper is not turning and the bed and hotend just turn off. The temps don't even show up in the monitor screen on the printer. Once the print starts, the monitor temps just disapear on the screen. ( I am assuming because it turns off).
Thanks for the helpl
Edited start gcode
sliced cura attached.
; **** Replicator 1 dual start.gcode ****
M73 P0 ; enable build progress
G162 X Y F3000 ; home XY maximum
G161 Z F1200 ; home Z minimum
G92 Z-5 ; set Z to -5
G1 Z0 ; move Z to 0
G161 Z F100 ; home Z slowly
M132 X Y Z A B ; recall home offsets
M135 T1 ; load left extruder offsets
G1 X140 Y75 Z0.5 F800 ; move to wait position right hand side of the table
G130 X20 Y20 Z20 A20 B20 ; lower stepper Vrefs while heating
M140 S{material_bed_temperature_layer_0} T0
M134 T0 ; stabilize bed temperature
M104 S{material_print_temperature_layer_0} T1
M133 T1 ; stabilize left extruder temperature
G130 X127 Y127 Z40 A127 B127 ; default stepper Vrefs
G92 A0 B0 ; zero extruders
G1 Z0.4 ; position nozzle
M135 T1 ; left tool
G1 X135 Y75 Z0.2 F1200 ; move over bed
G1 X60 Y72 E20 F1200 ; purge nozzle
;G1 X50 Y72 Z0.2 F600 ; slow wipe
;G1 X50 Y72 Z0.5 F1200 ; lift
G92 A0 B0 ; zero extruders
M73 P1 ;@body (notify GPX body has started)
; **** end of start.gcode ****
Recommended Posts
GregValiant 1,112
It looks like you copied that from SimpliFy3D. Cura uses a different keywords and curly brackets. When the gcode is created Cura understands the "M104 S" but doesn't understand the SimpliFy keywords in square brackets.
This line has to be hardcoded as Cura has no keyword in PWM.
M126 S[fan_speed_pwm]
You could change it to M126 S128 and your cooling fan would start at 50% speed. An option would be to remove it and let Cura add the fan lines later.
These two lines are wrong
M140 S[bed0_temperature] T0
M104 S[extruder1_temperature] T1
Change them to:
M140 S{material_bed_temperature_layer_0} T0
M104 S{material_print_temperature_layer_0} T1
That gcode looks to be for a single extruder print as T0 isn't called to heat up. You might have to make further changes to insure that it's up to temperature for a print that uses it. The Cura keywords are HERE.
Edited by GregValiantLink to post
Share on other sites