Extruder heater disabled when print commences and ETA is -8 sec??
I recently went into repetier and tried to print something. I noticed that when it homes, it travels to its designated position and then extrudes a set mm of filament as I edited in the Gcode. Once it gets done, it disables the extruder and does not print.Also, before I even go to print, The estimated printing time is -8 sec?
Comments
Start g code
; Default start code
G28 ; Home extruder
M666 X-1.8 Y-.87 Z-3.3
G28
G1 Z15 F{Z_TRAVEL_SPEED}
M107 ; Turn off fan
G90 ; Absolute positioning
M82 ; Extruder in absolute mode
{IF_BED}M190 S{BED}
; Activate all used extruder
{IF_EXT0}M104 T0 S{TEMP0}
G92 E0 ; Reset extruder position
; Wait for all used extruders to reach temperature
G1 E20 F100 ;extrude 20mm at 100mm/min
{IF_EXT0}M109 T0 S{TEMP0}