-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
69c2e5e
commit 856119c
Showing
1 changed file
with
125 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
[print] | ||
name = slow | ||
defaultQuality = bC3G4UF9VeuHBfgxoQz9HM0pPL6LMZ7o | ||
travelSpeedMin = 150 | ||
travelSpeedMax = 150 | ||
firstLayerSpeedMin = 10 | ||
firstLayerSpeedMax = 30 | ||
infillSpeedMin = 60 | ||
infillSpeedMax = 100 | ||
skinSpeedMin = 30 | ||
skinSpeedMax = 60 | ||
infillType = 0 | ||
innerPerimeterMin = 40 | ||
innerPerimeterMax = 80 | ||
outerPerimeterMin = 10 | ||
outerPerimeterMax = 80 | ||
printSpeedMin = 40 | ||
printSpeedMax = 80 | ||
nozzleDiameter = 0 | ||
gcodeFlavour = 0 | ||
retractionCombing = True | ||
combing = 1 | ||
multiVolumeOverlap = 0 | ||
cutOffObjectBottom = 0 | ||
shellThickness = 0.8 | ||
infillTopBottomThickness = 0.6 | ||
infillDensityPercent = 20 | ||
supportType = 0 | ||
platformAdhesion = 0 | ||
dualExtrusion = 0 | ||
wipeAndPrimeTower = True | ||
oozeShield = False | ||
enableRetraction = True | ||
retractionSpeed = 40 | ||
retractionDistance = 4 | ||
multiExtruderSwitchAmount = 16 | ||
startGCode = """ | ||
; Default start code | ||
G28 ; Home extruder | ||
G1 Z15 F{Z_TRAVEL_SPEED} | ||
M107 ; Turn off fan | ||
G90 ; Absolute positioning | ||
M82 ; Extruder in absolute mode | ||
; Start heating bed | ||
{IF_BED}M140 S{BED} | ||
; Start heating extruder | ||
{IF_EXT0}M104 T0 S{TEMP0} | ||
G92 E0 ; Reset extruder position | ||
; Wait for all used extruders to reach temperature | ||
{IF_EXT0}M109 T0 S{TEMP0} | ||
; Wait for bed to reach temperature | ||
{IF_BED}M190 S{BED} | ||
""" | ||
endGCode = """ | ||
; Get extruder out of way. | ||
G1 X0 Y0 Z200 | ||
; Turn on fan to cool hot end | ||
M106 S255 | ||
; Disable all extruder | ||
G91 ; Relative positioning | ||
{IF_EXT0}T0 | ||
{IF_EXT0}G1 E-1 ; Reduce filament pressure | ||
M104 T0 S0 | ||
G90 ; Absolute positioning | ||
G92 E0 ; Reset extruder position | ||
M140 S0 ; Disable heated bed | ||
M84 ; Turn steppers off | ||
M107 | ||
""" | ||
preSwitchExtruderCode = | ||
postSwitchExtruderCode = | ||
wipeAndPrimeTowerVolume = 15 | ||
retractionMinimumTravel = 1.5 | ||
minimumExtrusionBeforeRetract = 0.02 | ||
zhop = 0 | ||
skirtLineCount = 6 | ||
skirtDistance = 3 | ||
skirtMinimumLength = 150 | ||
solidInfillTop = True | ||
solidInfillBottom = True | ||
infillOverlapPercent = 15 | ||
supportStructureType = 0 | ||
supportOverhang = 60 | ||
supportFillPercent = 15 | ||
supportDistanceXY = 0.7 | ||
supportDistanceZ = 0.15 | ||
supportExtruder = -1 | ||
spiralizeOuterContour = False | ||
brimWidth = 10 | ||
raftExtraMargin = 5 | ||
raftLineSpacing = 1 | ||
raftBaseThickness = 0.3 | ||
raftBaseWidth = 0.7 | ||
raftInterfaceThickness = 0.2 | ||
raftInterfaceLineWidth = 0.2 | ||
raftAirGap = 0 | ||
raftAirGapLayer0 = 0 | ||
raftSurfaceLayer = 1 | ||
fixCombineEverythingA = True | ||
fixCombineEverythingB = False | ||
fixKeepOpenFaces = False | ||
fixExtensiveStitching = False | ||
fanFullAtHeight = 0.5 | ||
perimeterBeforeInfill = True | ||
minimumSpeed = 10 | ||
coolHeadLift = False | ||
numQuality = 3 | ||
[quality_0] | ||
name = 0.1 | ||
signature = 0zxxaevEglwj6D8XRj1ng7HbQxDuEk7s | ||
layerHeight = 0.1 | ||
layer0widthPercent = 100 | ||
firstLayerHeight = 0.3 | ||
[quality_1] | ||
name = 0.2 mm | ||
signature = 7u1jmnGOpfSe7d8UjzeMxha6ymJ42VzZ | ||
layerHeight = 0.2 | ||
layer0widthPercent = 100 | ||
firstLayerHeight = 0.3 | ||
[quality_2] | ||
name = 0.25 mm | ||
signature = bC3G4UF9VeuHBfgxoQz9HM0pPL6LMZ7o | ||
layerHeight = 0.25 | ||
layer0widthPercent = 100 | ||
firstLayerHeight = 0.3 |