setar писал(а):
у экструдера относительное расстояние выдавливания.
если было 5 а сказали выдавить 6 то выдавит 1 а при указании 4 один будет втянут.
так что перед выдавливанием или втягиванием не зыбывайте обнулять относительную координату:
G92 E0 // обнуляем E
G1 E1 // давим 1 мм
G1 E0 // втягиваем 1мм обратно
Поставил себе версию cura 14.12 ситуация немного улучшилась но не полностью. Если б Вы мне "зеленому в этом деле" еще объяснили чуть по подробнее куда данные значения подставить, был бы крайне признателен.
На сколько я понимаю мне надо внести изменения в значения в последнюю вкладку start/end gcode ?
start у меня такой;Sliced at: {day} {date} {time}
;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density}
;Print time: {print_time}
;Filament used: {filament_amount}m {filament_weight}g
;Filament cost: {filament_cost}
;M190 S{print_bed_temperature} ;Uncomment to add your own bed temperature line
;M109 S{print_temperature} ;Uncomment to add your own temperature line
G21 ;metric values
G90 ;absolute positioning
M82 ;set extruder to absolute mode
M107 ;start with the fan off
G28 X0 Y0 ;move X/Y to min endstops
G28 Z0 ;move Z to min endstops
G1 Z15.0 F{travel_speed} ;move the platform down 15mm
G92 E0 ;zero the extruded length
G1 F200 E3 ;extrude 3mm of feed stock
G92 E0 ;zero the extruded length again
G1 F{travel_speed}
;Put printing message on LCD screen
M117 Printing...
А end вот такой ;End GCode
M104 S0 ;extruder heater off
M140 S0 ;heated bed heater off (if you have it)
G91 ;relative positioning
G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure
G1 Z+0.5 E-5 X-20 Y-20 F{travel_speed} ;move Z up a bit and retract filament even more
G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way
M84 ;steppers off
G90 ;absolute positioning
;{profile_string}
Где мне исправить ?

Если я правильно понял надо end code сделать так ?
;End GCode
M104 S0 ;extruder heater off
M140 S0 ;heated bed heater off (if you have it)
G91 ;relative positioning
G92 E0 G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure
G92 E0 G1 Z+0.5 E-5 X-20 Y-20 F{travel_speed} ;move Z up a bit and retract filament even more
G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way
M84 ;steppers off
G90 ;absolute positioning
;{profile_string}