disable final brim retraction
This commit is contained in:
parent
3a15f0212f
commit
e813c6e50e
2 changed files with 34 additions and 1 deletions
|
|
@ -238,7 +238,7 @@ var gs_kiri_fdm = exports;
|
|||
});
|
||||
|
||||
print.addPrintPoints(preout, layerout, null);
|
||||
preout.last().retract = true;
|
||||
// preout.last().retract = true;
|
||||
}
|
||||
|
||||
// iterate over layer slices, find closest widget, print, eliminate
|
||||
|
|
|
|||
33
web/kiri/filter/FDM/XYZ.daVinci.Jr
Normal file
33
web/kiri/filter/FDM/XYZ.daVinci.Jr
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
"pre":[
|
||||
"T0 ; select extruder #0",
|
||||
"M104 S{temp} ; set nozzle temp",
|
||||
"M109 S{temp} ; wait for nozzle to heat",
|
||||
"M82 ; absolute extrusion mode",
|
||||
"G28 ; home",
|
||||
"G1 Z15 F6000 ; lower platform 15mm",
|
||||
"G92 E0 ; zero out extruder position",
|
||||
"G1 F200 E3 ; prime the extruder 3mm",
|
||||
"G92 E0 ; zero out extruder position",
|
||||
"M83 ; relative extrusion mode"
|
||||
],
|
||||
"post":[
|
||||
"M107 ; fan off",
|
||||
"M104 S0 ; set nozzle temp to 0",
|
||||
"M140 S0 ; set bed temp to 0",
|
||||
"M82 ; absolute extrusion mode",
|
||||
"G92 E1 ; zero out extruder position",
|
||||
"G1 E-1 F300 ; retract filament",
|
||||
"G28 X0 Y0 ; home X Y",
|
||||
"M84 ; disable steppers"
|
||||
],
|
||||
"cmd":{
|
||||
"fan_power": "M106 S{fan_speed}"
|
||||
},
|
||||
"settings":{
|
||||
"origin_center": false,
|
||||
"bed_width": 150,
|
||||
"bed_depth": 150,
|
||||
"build_height": 150
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue