default layer retract to false. purge gridbot at home position

This commit is contained in:
Stewart Allen 2019-04-23 12:58:40 -04:00
commit 95afa7b7ae
2 changed files with 4 additions and 5 deletions

View file

@ -105,7 +105,7 @@ self.kiri.license = exports.LICENSE;
// detectThinWalls: 1,
antiBacklash: 1,
zHopDistance: 1,
layerRetract: 1,
outputLayerRetract: 1,
gcodeNozzle: 1,
gcodePauseLayers: 1,
outputClockwise: 1,
@ -322,7 +322,7 @@ self.kiri.license = exports.LICENSE;
detectThinWalls: false,
antiBacklash: 1,
zHopDistance: 0.2,
layerRetract: 1,
outputLayerRetract: false,
gcodeNozzle: 0,
gcodePauseLayers: "",
outputCooling: true,
@ -2611,7 +2611,7 @@ self.kiri.license = exports.LICENSE;
zHopDistance: UC.newInput("z hop dist", {title: "amount to raise z\non retraction moves\nin millimeters\n0 to disable", bound:UC.bound(0,3.0), convert:UC.toFloat, modes:FDM}),
antiBacklash: UC.newInput("anti-backlash", {title: "use micro-movements to cancel\nbacklash during fills\nin millimeters", bound:UC.bound(0,3), convert:UC.toInt, modes:FDM}),
//detectThinWalls: UC.newBoolean("thin wall fill", onBooleanClick, {title: "detect and fill thin openings\nbetween shells walls", modes:FDM})
layerRetract: UC.newBoolean("layer retract", onBooleanClick, {title:"force filament retraction\nbetween layers", modes:FDM}),
outputLayerRetract: UC.newBoolean("layer retract", onBooleanClick, {title:"force filament retraction\nbetween layers", modes:FDM}),
gcodeVars: UC.newGroup("gcode", null, {modes:FDM}),
gcodeNozzle: UC.newInput("nozzle", {title: "select output nozzle", convert:UC.toInt, modes:FDM}),

View file

@ -8,12 +8,11 @@
"M83 ; set relative positioning for extruder",
"G28 ; home axes",
"G1 F3000 ; set default move speed",
"G1 X-8 Y-17 Z0 ; move to XY heating point",
"M190 S{bed_temp} T0 ; wait for bed to reach target temp",
"M109 S{temp} T0 ; wait for extruder to reach target temp",
"M117 Purge ; announce purge",
"G92 E0 ; set extruder position to 0",
"G1 E50 F350 ; purge 50mm from extruder",
"G1 E30 F300 ; purge 30mm from extruder",
"G1 X0 Y0 Z0 F3000 ; move to origin / wipe",
"M117 Start Print ; announce start of print"
],