Garys Hack and SFACT all together in a package

master
Ahmet Cem TURAN 2011-08-01 23:04:42 +03:00
parent fa63e85753
commit 06a7827dde
831 changed files with 83429 additions and 6 deletions

BIN
P-Face_SFACT.rar Normal file

Binary file not shown.

BIN
P-face.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

View File

@ -0,0 +1,146 @@
#!/usr/bin/env python
from skeinforge.fabmetheus_utilities import archive
from skeinforge.fabmetheus_utilities import settings
from skeinforge.skeinforge_application.skeinforge_utilities import skeinforge_craft
from skeinforge.skeinforge_application.skeinforge_utilities import skeinforge_profile
import os
import wx
class SkeinforgeQuickEditDialog(wx.Dialog):
'''Shows a consise list of important settings from the active Skeinforge profile.'''
def __init__(self, *args, **kwds):
kwds["style"] = wx.DEFAULT_DIALOG_STYLE | wx.MAXIMIZE_BOX | wx.MINIMIZE_BOX | wx.RESIZE_BORDER
wx.Dialog.__init__(self, *args, **kwds)
self.okButton = wx.Button(self, wx.ID_OK, "Save")
self.cancelButton = wx.Button(self, wx.ID_CANCEL, "")
self.Bind(wx.EVT_BUTTON, self.OnExit, self.cancelButton)
self.Bind(wx.EVT_BUTTON, self.OnSave, self.okButton)
"""
The following list determines which settings are shown.
The dictionary key is the plugin name and the value is a list of setting names as found in the corresponding .csv file for that plugin.
NOTE: Skeinforge is tightly integrated with Tkinter and there appears to be a dependency which stops radio-button values from being saved.
Perhaps this can be solved, but at the moment this dialog cannot modify radio button values. One will have to use the main Skeinforge application.
"""
self.moduleSettingsMap = {
'dimension':['Filament Diameter (mm):','Retraction Distance (millimeters):', 'Retraction Distance (millimeters):','Extruder Retraction Speed (mm/s):'],
'carve':['Layer Height = Extrusion Thickness (mm):', 'Extrusion Width (mm):'],
'chamber':['Heated PrintBed Temperature (Celcius):', 'Turn print Bed Heater Off at Shut Down', 'Turn Extruder Heater Off at Shut Down'],
'cool':['Activate Cool.. but use with a fan!', 'Use Cool if layer takes shorter than(seconds):'],
'fill':['Activate Fill:', 'Infill Solidity (ratio):', 'Fully filled Layers (each top and bottom):', 'Extra Shells on Sparse Layer (layers):', 'Extra Shells on Alternating Solid Layer (layers):'],
'multiply':['Number of Columns (integer):', 'Number of Rows (integer):'],
'raft':['First Layer Main Feedrate (mm/s):','First Layer Perimeter Feedrate (mm/s):','First Layer Flow Rate Infill(scaler):','First Layer Flow Rate Perimeter(scaler):',],
'speed':['Main Feed Rate (mm/s):','Main Flow Rate (scaler):','Perimeter Feed Rate (mm/s):','Perimeter Flow Rate (scaler):','Travel Feed Rate (mm/s):']
}
self.scrollbarPanel = wx.ScrolledWindow(self, -1, style=wx.TAB_TRAVERSAL)
self.settingsSizer = self.getProfileSettings()
self.scrollbarPanel.SetSizer(self.settingsSizer)
self.__set_properties()
self.__do_layout()
self.Show()
def __set_properties(self):
self.profileName = skeinforge_profile.getProfileName(skeinforge_profile.getCraftTypeName())
self.SetTitle("Skeinforge Quick Edit Profile: " + self.profileName)
# For some reason the dialog size is not consistent between Windows and Linux - this is a hack to get it working
if (os.name == 'nt'):
self.SetMinSize(wx.DLG_SZE(self, (465, 370)))
else:
self.SetSize(wx.DLG_SZE(self, (465, 325)))
self.SetPosition((0, 0))
self.scrollbarPanel.SetScrollRate(10, 10)
def __do_layout(self):
mainSizer = wx.BoxSizer(wx.VERTICAL)
actionsSizer = wx.BoxSizer(wx.HORIZONTAL)
mainSizer.Add(self.scrollbarPanel, 1, wx.EXPAND | wx.ALL, 5)
actionsSizer.Add(self.okButton, 0, 0, 0)
actionsSizer.Add(self.cancelButton, 0, wx.LEFT, 10)
mainSizer.Add(actionsSizer, 0, wx.ALIGN_RIGHT | wx.ALL, 5)
self.SetSizer(mainSizer)
self.Layout()
def getProfileSettings(self):
settingsSizer = wx.GridBagSizer(hgap=2, vgap=1)
settingsRow = 0
for craftName in sorted(self.moduleSettingsMap.keys()):
craftStaticBox = wx.StaticBox(self.scrollbarPanel, -1, craftName.capitalize())
craftStaticBoxSizer = wx.StaticBoxSizer(craftStaticBox, wx.VERTICAL)
# For some reason the dialog size is not consistent between Windows and Linux - this is a hack to get it working
if (os.name == 'nt'):
craftStaticBoxSizer.SetMinSize((320, -1))
else:
craftStaticBoxSizer.SetMinSize((450, -1))
pluginModule = archive.getModuleWithPath(os.path.join(skeinforge_craft.getPluginsDirectoryPath(), craftName))
repo = pluginModule.getNewRepository()
for setting in settings.getReadRepository(repo).preferences:
if setting.name in self.moduleSettingsMap[craftName]:
settingSizer = wx.GridBagSizer(hgap=2, vgap=2)
settingSizer.AddGrowableCol(0)
settingRow = 0
settingLabel = wx.StaticText(self.scrollbarPanel, -1, setting.name)
settingLabel.Wrap(400)
settingSizer.Add(settingLabel, pos=(settingRow, 0))
if (isinstance(setting.value, bool)):
checkbox = wx.CheckBox(self.scrollbarPanel)
checkbox.SetName(craftName + '.' + setting.name)
checkbox.SetValue(setting.value)
settingSizer.Add(checkbox, pos=(settingRow, 1))
settingSizer.AddSpacer((25, -1), pos=(settingRow, 2))
else:
textCtrl = wx.TextCtrl(self.scrollbarPanel, value=str(setting.value), size=(50, -1))
textCtrl.SetName(craftName + '.' + setting.name)
settingSizer.Add(textCtrl, pos=(settingRow, 1))
craftStaticBoxSizer.Add(settingSizer, 1, wx.EXPAND, 0)
settingRow += 1
col = settingsRow % 2
settingsSizer.Add(craftStaticBoxSizer, pos=(settingsRow - col, col))
settingsRow += 1
return settingsSizer
def OnExit(self, e):
self.Destroy()
def OnSave(self, e):
for x in self.scrollbarPanel.GetChildren():
if (isinstance(x, (wx.CheckBox, wx.TextCtrl))):
name = x.GetName().partition('.')
craftName = name[0]
settingName = name[2]
pluginModule = archive.getModuleWithPath(os.path.join(skeinforge_craft.getPluginsDirectoryPath(), craftName))
repo = pluginModule.getNewRepository()
isDirty = False
for setting in settings.getReadRepository(repo).preferences:
if setting.name == settingName:
if setting.value == None or str(x.GetValue()) != str(setting.value):
print('Saving ... ' + settingName + ' = ' + str(x.GetValue()))
setting.value = x.GetValue()
isDirty = True
if isDirty:
settings.saveRepository(repo)
print("Skeinforge settings have been saved.")
self.Destroy()
class SkeinforgeQuickEditApp(wx.App):
def OnInit(self):
wx.InitAllImageHandlers()
SkeinforgeQuickEditDialog(None, -1, "")
return 1
if __name__ == "__main__":
skeinforgeQuickEditApp = SkeinforgeQuickEditApp(0)
skeinforgeQuickEditApp.MainLoop()

12
gviz.py
View File

@ -2,7 +2,7 @@ import wx,time
class window(wx.Frame):
def __init__(self,f,size=(600,600),bedsize=(200,200)):
wx.Frame.__init__(self,None,title="Layer view (Use arrow keys to switch layers)",size=(size[0],size[1]))
wx.Frame.__init__(self,None,title="Layer view (Use shift+mousewheel to switch layers)",size=(size[0],size[1]))
self.p=gviz(self,size=size,bedsize=bedsize)
s=time.time()
for i in f:
@ -126,6 +126,14 @@ class gviz(wx.Panel):
dc.SelectObject(self.blitmap)
dc.SetBackground(wx.Brush((250,250,200)))
dc.Clear()
dc.SetPen(wx.Pen(wx.Colour(100,100,100)))
for i in xrange(max(self.bedsize)/10):
dc.DrawLine(self.translate[0],self.translate[1]+i*self.scale[1]*10,self.translate[0]+self.scale[0]*max(self.bedsize),self.translate[1]+i*self.scale[1]*10)
dc.DrawLine(self.translate[0]+i*self.scale[0]*10,self.translate[1],self.translate[0]+i*self.scale[0]*10,self.translate[1]+self.scale[1]*max(self.bedsize))
dc.SetPen(wx.Pen(wx.Colour(0,0,0)))
for i in xrange(max(self.bedsize)/50):
dc.DrawLine(self.translate[0],self.translate[1]+i*self.scale[1]*50,self.translate[0]+self.scale[0]*max(self.bedsize),self.translate[1]+i*self.scale[1]*50)
dc.DrawLine(self.translate[0]+i*self.scale[0]*50,self.translate[1],self.translate[0]+i*self.scale[0]*50,self.translate[1]+self.scale[1]*max(self.bedsize))
if not self.showall:
self.size = self.GetSize()
dc.SetBrush(wx.Brush((43,144,255)))
@ -201,7 +209,7 @@ class gviz(wx.Panel):
if __name__ == '__main__':
app = wx.App(False)
#main = window(open("/home/kliment/designs/spinner/gearend_export.gcode"))
#main = window(open("/home/kliment/designs/spinner/arm_export.gcode"))
main = window(open("jam.gcode"))
main.Show()
app.MainLoop()

View File

@ -1,3 +1,4 @@
#!/usr/bin/env python
import wx,time,random,threading,os,math
import stltool
@ -87,6 +88,11 @@ class showstl(wx.Window):
self.models[newname].offsets=[0,0,0]
#print time.time()-t
self.l.Append([stlwrap(self.models[newname],newname)])
i=self.l.GetFirstSelected()
if i != -1:
self.l.Select(i,0)
self.l.Select(self.l.GetItemCount()-1)
self.Refresh()
#print time.time()-t
@ -125,7 +131,7 @@ class showstl(wx.Window):
i=self.l.GetFirstSelected()
if i != -1:
o=self.models[self.l.GetItemText(i)].offsets
self.models[self.l.GetItemText(i)]=self.models[self.l.GetItemText(i)].rotate([0,0,self.i-self.previ])
self.models[self.l.GetItemText(i)]=self.models[self.l.GetItemText(i)].rotate([0,0,5*(self.i-self.previ)])
self.models[self.l.GetItemText(i)].offsets=o
self.previ=self.i
wx.CallAfter(self.Refresh)

View File

@ -4,7 +4,7 @@ try:
except:
print "WX is not installed. This program requires WX to run."
raise
import printcore, os, sys, glob, time, threading, traceback, StringIO, gviz, traceback
import printcore, os, sys, glob, time, threading, traceback, StringIO, gviz, traceback, cStringIO
try:
os.chdir(os.path.split(__file__)[0])
except:
@ -48,6 +48,7 @@ class PronterWindow(wx.Frame,pronsole.pronsole):
self.filename=filename
os.putenv("UBUNTU_MENUPROXY","0")
wx.Frame.__init__(self,None,title="Printer Interface",size=size);
self.SetIcon(wx.Icon("P-face.ico",wx.BITMAP_TYPE_ICO))
self.panel=wx.Panel(self,-1,size=size)
self.statuscheck=False
self.tempreport=""
@ -113,7 +114,7 @@ class PronterWindow(wx.Frame,pronsole.pronsole):
self.starttime=time.time()
def endcb(self):
print "Print took "+str(int(time.time()-self.starttime))+" seconds."
print "Print took "+str(int(time.time()-self.starttime)/60)+" minutes."
wx.CallAfter(self.pausebtn.Hide)
wx.CallAfter(self.printbtn.SetLabel,"Print")
@ -260,7 +261,13 @@ class PronterWindow(wx.Frame,pronsole.pronsole):
m = wx.Menu()
self.Bind(wx.EVT_MENU, self.loadfile, m.Append(-1,"&Open..."," Opens file"))
if sys.platform != 'darwin':
self.Bind(wx.EVT_MENU, lambda x:threading.Thread(target=lambda :self.do_skein("set")).start(), m.Append(-1,"Skeinforge settings"," Adjust skeinforge settings"))
self.Bind(wx.EVT_MENU, lambda x:threading.Thread(target=lambda :self.do_skein("set")).start(), m.Append(-1,"SFACT Settings"," Adjust SFACT settings"))
try:
from SkeinforgeQuickEditDialog import SkeinforgeQuickEditDialog
self.Bind(wx.EVT_MENU, lambda *e:SkeinforgeQuickEditDialog(self), m.Append(-1,"SFACT Quick Settings"," Quickly adjust SFACT settings for active profile"))
except:
pass
self.Bind(wx.EVT_MENU, self.OnExit, m.Append(wx.ID_EXIT,"E&xit"," Closes the Window"))
self.menustrip.Append(m,"&Print")
m = wx.Menu()

View File

@ -0,0 +1,4 @@
Format is tab separated cutting settings.
_Name Value
WindowPosition 0+400
Profile Selection: end_mill
1 Format is tab separated cutting settings.
2 _Name Value
3 WindowPosition 0+400
4 Profile Selection: end_mill

View File

@ -0,0 +1,4 @@
Format is tab separated extrusion settings.
_Name Value
WindowPosition 0+400
Profile Selection: PLA
1 Format is tab separated extrusion settings.
2 _Name Value
3 WindowPosition 0+400
4 Profile Selection: PLA

View File

@ -0,0 +1,8 @@
Format is tab separated bottom settings.
_Name Value
WindowPosition 700+0
Open File for Bottom
Activate Bottom... and dont change anything else here!!! True
Additional Height (ratio): 0.5
Altitude (mm): 0.0
SVG Viewer: webbrowser
1 Format is tab separated bottom settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Bottom
5 Activate Bottom... and dont change anything else here!!! True
6 Additional Height (ratio): 0.5
7 Altitude (mm): 0.0
8 SVG Viewer: webbrowser

View File

@ -0,0 +1,15 @@
Format is tab separated carve settings.
_Name Value
WindowPosition 700+0
Open File for Carve
Layer Height = Extrusion Thickness (mm): 0.33
Extrusion Width (mm): 0.5
Print from Layer No:: 0
Print up to Layer No: 912345678
Infill in Direction of Bridge True
Correct Mesh True
Unproven Mesh False
SVG Viewer: webbrowser
Add Layer Template to SVG True
Extra Decimal Places (float): 2.0
Import Coarseness (ratio): 1.0
1 Format is tab separated carve settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Carve
5 Layer Height = Extrusion Thickness (mm): 0.33
6 Extrusion Width (mm): 0.5
7 Print from Layer No:: 0
8 Print up to Layer No: 912345678
9 Infill in Direction of Bridge True
10 Correct Mesh True
11 Unproven Mesh False
12 SVG Viewer: webbrowser
13 Add Layer Template to SVG True
14 Extra Decimal Places (float): 2.0
15 Import Coarseness (ratio): 1.0

View File

@ -0,0 +1,8 @@
Format is tab separated chamber settings.
_Name Value
WindowPosition 700+0
Open File for Chamber
Activate Chamber..if you want below functions to work True
Heated PrintBed Temperature (Celcius): 60.0
Turn print Bed Heater Off at Shut Down True
Turn Extruder Heater Off at Shut Down True
1 Format is tab separated chamber settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Chamber
5 Activate Chamber..if you want below functions to work True
6 Heated PrintBed Temperature (Celcius): 60.0
7 Turn print Bed Heater Off at Shut Down True
8 Turn Extruder Heater Off at Shut Down True

View File

@ -0,0 +1,6 @@
Format is tab separated clairvoyance settings.
_Name Value
WindowPosition 700+0
Activate Clairvoyance False
Open File to Generate Clairvoyances for
Gcode Program: webbrowser
1 Format is tab separated clairvoyance settings.
2 _Name Value
3 WindowPosition 700+0
4 Activate Clairvoyance False
5 Open File to Generate Clairvoyances for
6 Gcode Program: webbrowser

View File

@ -0,0 +1,7 @@
Format is tab separated clip settings.
_Name Value
WindowPosition 700+0
Open File for Clip
Activate Clip..to clip the extrusion that overlaps when printing perimeters True
Clip Over Perimeter Width adjuster (decrease for bigger gap): 1.0
Threshold for connecting inner loops (ratio): 2.5
1 Format is tab separated clip settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Clip
5 Activate Clip..to clip the extrusion that overlaps when printing perimeters True
6 Clip Over Perimeter Width adjuster (decrease for bigger gap): 1.0
7 Threshold for connecting inner loops (ratio): 2.5

View File

@ -0,0 +1,9 @@
Format is tab separated comb settings.
_Name Value
WindowPosition 700+0
Open File for Comb
Activate Comb if you cant stop the extruder stringing by retraction
it will avoid moving over loops so the strings will be there
but not visible anymore.
Comb bends the extruder travel paths around holes in the slices, to avoid stringing.
so any start up ooze will be inside the shape. True
1 Format is tab separated comb settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Comb
5 Activate Comb if you cant stop the extruder stringing by retraction
6 it will avoid moving over loops so the strings will be there
7 but not visible anymore.
8 Comb bends the extruder travel paths around holes in the slices, to avoid stringing.
9 so any start up ooze will be inside the shape. True

View File

@ -0,0 +1,5 @@
Format is tab separated comment settings.
_Name Value
WindowPosition 700+0
Activate Comment False
Open File to Write Comments for
1 Format is tab separated comment settings.
2 _Name Value
3 WindowPosition 700+0
4 Activate Comment False
5 Open File to Write Comments for

View File

@ -0,0 +1,15 @@
Format is tab separated cool settings.
_Name Value
WindowPosition 700+0
Open File for Cool
Activate Cool.. but use with a fan! False
Use Cool if layer takes shorter than(seconds): 10.0
Turn Fan On at Beginning True
Turn Fan Off at Ending True
Execute when Cool starts: cool_start.gmc
Execute when Cool ends: cool_end.gmc
Orbiting around Object False
Slow Down during print True
Maximum Cool (Celcius): 2.0
Bridge Cool (Celcius): 1.0
Minimum Orbital Radius (millimeters): 10.0
1 Format is tab separated cool settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Cool
5 Activate Cool.. but use with a fan! False
6 Use Cool if layer takes shorter than(seconds): 10.0
7 Turn Fan On at Beginning True
8 Turn Fan Off at Ending True
9 Execute when Cool starts: cool_start.gmc
10 Execute when Cool ends: cool_end.gmc
11 Orbiting around Object False
12 Slow Down during print True
13 Maximum Cool (Celcius): 2.0
14 Bridge Cool (Celcius): 1.0
15 Minimum Orbital Radius (millimeters): 10.0

View File

@ -0,0 +1,15 @@
Format is tab separated dimension settings.
_Name Value
WindowPosition 700+0
Open File for Dimension
Activate Volumetric Extrusion (Stepper driven Extruders) True
Filament Diameter (mm): 1.75
Filament Packing Density (ratio) lower=more extrusion: 1.0
Retraction Distance (millimeters): 1.0
Restart Extra Distance (millimeters): 0.0
Extruder Retraction Speed (mm/s): 15.0
Force to retract when crossing over spaces True
Minimum Extrusion before Retraction (millimeters): 1.0
Minimum Travelmove after Retraction (millimeters): 1.0
in Absolute units (Sprinter, FiveD a.o.) True
in Relative units (Teacup a.o.) False
Can't render this file because it has a wrong number of fields in line 14.

View File

@ -0,0 +1,20 @@
Format is tab separated export settings.
_Name Value
WindowPosition 700+0
Open File for Export
Activate Export True
Add _export to filename (filename_export) True
Also Send Output To:
Do Not Delete Comments False
Delete Crafting Comments False
Delete All Comments True
Do Not Change Output False
gcode_small True
File Extension (gcode): gcode
Name of Replace File: replace.csv
Save Penultimate Gcode False
Archive Used Profile As Zip False
Export Profile Values As CSV File False
Add Profile Name to Filename False
Add Description to Filename False
Add Timestamp to Filename False
1 Format is tab separated export settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Export
5 Activate Export True
6 Add _export to filename (filename_export) True
7 Also Send Output To:
8 Do Not Delete Comments False
9 Delete Crafting Comments False
10 Delete All Comments True
11 Do Not Change Output False
12 gcode_small True
13 File Extension (gcode): gcode
14 Name of Replace File: replace.csv
15 Save Penultimate Gcode False
16 Archive Used Profile As Zip False
17 Export Profile Values As CSV File False
18 Add Profile Name to Filename False
19 Add Description to Filename False
20 Add Timestamp to Filename False

View File

@ -0,0 +1,34 @@
Format is tab separated fill settings.
_Name Value
WindowPosition 700+0
Open File for Fill
Activate Fill: True
Infill Solidity (ratio): 0.35
Extrusion Lines extra Spacing (Scaler): 1.0
Infill Overlap over Perimeter (Scaler): 1.0
Extra Shells on Alternating Solid Layer (layers): 1
Extra Shells on Base (layers): 1
Extra Shells on Sparse Layer (layers): 1
Fully filled Layers (each top and bottom): 2
Lower Left True
Nearest False
Infill > Loops > Perimeter False
Infill > Perimeter > Loops False
Loops > Infill > Perimeter False
Loops > Perimeter > Infill False
Perimeter > Infill > Loops False
Perimeter > Loops > Infill True
Line True
Grid Circular False
Grid Hexagonal False
Grid Rectangular False
Diaphragm at every ...th Layer: 100
Diaphragm Thickness (layers): 0
Grid Circle Separation over Perimeter Width (ratio): 0.2
Grid Extra Overlap (ratio): 0.1
Grid Junction Separation Band Height (layers): 10
Grid Junction Separation over Octogon Radius At End (ratio): 0.0
Grid Junction Separation over Octogon Radius At Middle (ratio): 0.0
Infill Begin Rotation (degrees): 45.0
Infill Begin Rotation Repeat (layers): 1
Infill Odd Layer Extra Rotation (degrees): 90.0
1 Format is tab separated fill settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Fill
5 Activate Fill: True
6 Infill Solidity (ratio): 0.35
7 Extrusion Lines extra Spacing (Scaler): 1.0
8 Infill Overlap over Perimeter (Scaler): 1.0
9 Extra Shells on Alternating Solid Layer (layers): 1
10 Extra Shells on Base (layers): 1
11 Extra Shells on Sparse Layer (layers): 1
12 Fully filled Layers (each top and bottom): 2
13 Lower Left True
14 Nearest False
15 Infill > Loops > Perimeter False
16 Infill > Perimeter > Loops False
17 Loops > Infill > Perimeter False
18 Loops > Perimeter > Infill False
19 Perimeter > Infill > Loops False
20 Perimeter > Loops > Infill True
21 Line True
22 Grid Circular False
23 Grid Hexagonal False
24 Grid Rectangular False
25 Diaphragm at every ...th Layer: 100
26 Diaphragm Thickness (layers): 0
27 Grid Circle Separation over Perimeter Width (ratio): 0.2
28 Grid Extra Overlap (ratio): 0.1
29 Grid Junction Separation Band Height (layers): 10
30 Grid Junction Separation over Octogon Radius At End (ratio): 0.0
31 Grid Junction Separation over Octogon Radius At Middle (ratio): 0.0
32 Infill Begin Rotation (degrees): 45.0
33 Infill Begin Rotation Repeat (layers): 1
34 Infill Odd Layer Extra Rotation (degrees): 90.0

View File

@ -0,0 +1,6 @@
Format is tab separated home settings.
_Name Value
WindowPosition 700+0
Open File for Home
Activate Home ... Not needed True
Name of Homing File: homing.gcode
1 Format is tab separated home settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Home
5 Activate Home ... Not needed True
6 Name of Homing File: homing.gcode

View File

@ -0,0 +1,8 @@
Format is tab separated inset settings.
_Name Value
WindowPosition 700+0
Open File for Inset
Bridge Width Multiplier (ratio): 1.0
Prefer Loops False
Prefer Perimeter True
Overlap Removal(Scaler): 1.0
1 Format is tab separated inset settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Inset
5 Bridge Width Multiplier (ratio): 1.0
6 Prefer Loops False
7 Prefer Perimeter True
8 Overlap Removal(Scaler): 1.0

View File

@ -0,0 +1,7 @@
Format is tab separated interpret settings.
_Name Value
WindowPosition 700+0
Open File for Interpret
Activate Interpret False
Print Interpretion False
Text Program: webbrowser
1 Format is tab separated interpret settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Interpret
5 Activate Interpret False
6 Print Interpretion False
7 Text Program: webbrowser

View File

@ -0,0 +1,6 @@
Format is tab separated jitter settings.
_Name Value
WindowPosition 700+0
Open File for Jitter
Activate Jitter to have your perimeter and loop endpoints scattered False
Jitter Over Perimeter Width (ratio): 2.0
1 Format is tab separated jitter settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Jitter
5 Activate Jitter to have your perimeter and loop endpoints scattered False
6 Jitter Over Perimeter Width (ratio): 2.0

View File

@ -0,0 +1,8 @@
Format is tab separated lash settings.
_Name Value
WindowPosition 700+0
Open File for Lash
Activate Lash if you have backlash in your axes.
But its better to fix the mechanical problem! False
X Backlash (mm): 0.0
Y Backlash (mm): 0.0
1 Format is tab separated lash settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Lash
5 Activate Lash if you have backlash in your axes.
6 But its better to fix the mechanical problem! False
7 X Backlash (mm): 0.0
8 Y Backlash (mm): 0.0

View File

@ -0,0 +1,7 @@
Format is tab separated limit settings.
_Name Value
WindowPosition 700+0
Open File for Limit
Activate Limit if your Firmware is unable to Limiting your Z-Speed. False
Maximum Initial Feed Rate (mm/s): 5.0
Maximum Z Feed Rate (mm/s): 5.0
1 Format is tab separated limit settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Limit
5 Activate Limit if your Firmware is unable to Limiting your Z-Speed. False
6 Maximum Initial Feed Rate (mm/s): 5.0
7 Maximum Z Feed Rate (mm/s): 5.0

View File

@ -0,0 +1,10 @@
Format is tab separated multiply settings.
_Name Value
WindowPosition 700+0
Open File for Multiply
Activate Multiply: True
Center X (mm): 100.0
Center Y (mm): 100.0
Number of Columns (integer): 1
Number of Rows (integer): 1
Separation over Perimeter Width (ratio): 15.0
1 Format is tab separated multiply settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Multiply
5 Activate Multiply: True
6 Center X (mm): 100.0
7 Center Y (mm): 100.0
8 Number of Columns (integer): 1
9 Number of Rows (integer): 1
10 Separation over Perimeter Width (ratio): 15.0

View File

@ -0,0 +1,5 @@
Format is tab separated polyfile settings.
_Name Value
WindowPosition 700+0
Execute All Unmodified Files in a Directory False
Execute File True
1 Format is tab separated polyfile settings.
2 _Name Value
3 WindowPosition 700+0
4 Execute All Unmodified Files in a Directory False
5 Execute File True

View File

@ -0,0 +1,11 @@
Format is tab separated preface settings.
Home before Print False
_Name Value
WindowPosition 700+0
Open File for Preface
Reset Extruder before Print True
Meta:
Name of End File: end.gmc
Name of Start File: start.gmc
Set Positioning to Absolute True
Set Units to Millimeters True
1 Format is tab separated preface settings.
2 Home before Print False
3 _Name Value
4 WindowPosition 700+0
5 Open File for Preface
6 Reset Extruder before Print True
7 Meta:
8 Name of End File: end.gmc
9 Name of Start File: start.gmc
10 Set Positioning to Absolute True
11 Set Units to Millimeters True

View File

@ -0,0 +1,38 @@
Format is tab separated raft settings.
_Name Value
WindowPosition 700+0
Open File for Raft
Activate Raft True
Add Raft, Elevate Nozzle, Orbit: True
None True
Empty Layers Only False
Everywhere False
Exterior Only False
Add support if flatter than (degrees): 50.0
Cross Hatch instead of Lines False
Interface/Support Lines Density (ratio): 0.25
Interface/Support Layer Thickness over Layer Thickness: 1.0
Support Feed Rate mm/sec: 15.0
Support Flow Rate (scaler): 1.0
Support Gap over Perimeter Extrusion Width (ratio): 1.0
Raft/Support extension in (%): 5.0
Raft/Support extension in(mm): 2.0
Name of Support End File: support_end.gmc
Name of Support Start File: support_start.gmc
Extra Nozzle clearance over Object(ratio): 0.0
First Layer Main Feedrate (mm/s): 35.0
First Layer Perimeter Feedrate (mm/s): 25.0
First Layer Flow Rate Infill(scaler): 1.0
First Layer Flow Rate Perimeter(scaler): 1.0
Interface Layers (integer): 0
Interface Feed Rate Multiplier (ratio): 1.0
Interface Flow Rate Multiplier (ratio): 1.0
Interface Nozzle Lift over Interface Layer Thickness (ratio): 0.45
Base Layers (integer): 0
Base Feed Rate Multiplier (ratio): 0.5
Base Flow Rate Multiplier (ratio): 0.5
Base Infill Density (ratio): 0.5
Base Layer Thickness over Layer Thickness: 2.0
Base Nozzle Lift over Base Layer Thickness (ratio): 0.4
Initial Circling: False
Infill Overhang over Extrusion Width (ratio): 3.0
1 Format is tab separated raft settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Raft
5 Activate Raft True
6 Add Raft, Elevate Nozzle, Orbit: True
7 None True
8 Empty Layers Only False
9 Everywhere False
10 Exterior Only False
11 Add support if flatter than (degrees): 50.0
12 Cross Hatch instead of Lines False
13 Interface/Support Lines Density (ratio): 0.25
14 Interface/Support Layer Thickness over Layer Thickness: 1.0
15 Support Feed Rate mm/sec: 15.0
16 Support Flow Rate (scaler): 1.0
17 Support Gap over Perimeter Extrusion Width (ratio): 1.0
18 Raft/Support extension in (%): 5.0
19 Raft/Support extension in(mm): 2.0
20 Name of Support End File: support_end.gmc
21 Name of Support Start File: support_start.gmc
22 Extra Nozzle clearance over Object(ratio): 0.0
23 First Layer Main Feedrate (mm/s): 35.0
24 First Layer Perimeter Feedrate (mm/s): 25.0
25 First Layer Flow Rate Infill(scaler): 1.0
26 First Layer Flow Rate Perimeter(scaler): 1.0
27 Interface Layers (integer): 0
28 Interface Feed Rate Multiplier (ratio): 1.0
29 Interface Flow Rate Multiplier (ratio): 1.0
30 Interface Nozzle Lift over Interface Layer Thickness (ratio): 0.45
31 Base Layers (integer): 0
32 Base Feed Rate Multiplier (ratio): 0.5
33 Base Flow Rate Multiplier (ratio): 0.5
34 Base Infill Density (ratio): 0.5
35 Base Layer Thickness over Layer Thickness: 2.0
36 Base Nozzle Lift over Base Layer Thickness (ratio): 0.4
37 Initial Circling: False
38 Infill Overhang over Extrusion Width (ratio): 3.0

View File

@ -0,0 +1,8 @@
Format is tab separated scale settings.
_Name Value
WindowPosition 700+0
Open File for Scale
Activate Scale to finetune print size (try to find the fault somewhere else..): False
XY Plane Scale (ratio): 1.0
Z Axis Scale (ratio): 1.0
SVG Viewer: webbrowser
1 Format is tab separated scale settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Scale
5 Activate Scale to finetune print size (try to find the fault somewhere else..): False
6 XY Plane Scale (ratio): 1.0
7 Z Axis Scale (ratio): 1.0
8 SVG Viewer: webbrowser

View File

@ -0,0 +1,9 @@
Format is tab separated skeinforge settings.
_Name Value
WindowPosition 1187+2
Open File for Skeinforge C:/Users/Ahmet/STL/_Screw Holder Bottom.stl
analyze False
craft True
help False
meta False
profile False
1 Format is tab separated skeinforge settings.
2 _Name Value
3 WindowPosition 1187+2
4 Open File for Skeinforge C:/Users/Ahmet/STL/_Screw Holder Bottom.stl
5 analyze False
6 craft True
7 help False
8 meta False
9 profile False

View File

@ -0,0 +1,11 @@
Format is tab separated skeinforge analyze settings.
_Name Value
WindowPosition 600+0
Open File for Analyze
clairvoyance False
comment False
interpret False
skeiniso True
skeinlayer False
statistic False
vectorwrite False
1 Format is tab separated skeinforge analyze settings.
2 _Name Value
3 WindowPosition 600+0
4 Open File for Analyze
5 clairvoyance False
6 comment False
7 interpret False
8 skeiniso True
9 skeinlayer False
10 statistic False
11 vectorwrite False

View File

@ -0,0 +1,27 @@
Format is tab separated skeinforge craft settings.
_Name Value
WindowPosition 600+0
Open File for Craft
bottom False
carve False
chamber False
clip False
comb False
cool False
dimension True
export False
fill False
inset False
jitter False
lash False
limit False
multiply False
preface False
raft False
scale False
skin False
skirt False
speed False
stretch False
temperature False
wipe False
1 Format is tab separated skeinforge craft settings.
2 _Name Value
3 WindowPosition 600+0
4 Open File for Craft
5 bottom False
6 carve False
7 chamber False
8 clip False
9 comb False
10 cool False
11 dimension True
12 export False
13 fill False
14 inset False
15 jitter False
16 lash False
17 limit False
18 multiply False
19 preface False
20 raft False
21 scale False
22 skin False
23 skirt False
24 speed False
25 stretch False
26 temperature False
27 wipe False

View File

@ -0,0 +1,4 @@
Format is tab separated skeinforge help settings.
_Name Value
WindowPosition 600+0
Wiki Manual Primary True
1 Format is tab separated skeinforge help settings.
2 _Name Value
3 WindowPosition 600+0
4 Wiki Manual Primary True

View File

@ -0,0 +1,41 @@
Format is tab separated skeiniso settings.
_Name Value
WindowPosition 700+0
Open File for Skeiniso
Activate Skeiniso True
Frame List
Animation Line Quickening (ratio): 1.0
Animation Slide Show Rate (layers/second): 2.0
Axis Rulings True
Band Height (layers): 5
Bottom Band Brightness (ratio): 0.7
Bottom Layer Brightness (ratio): 1.0
From the Bottom False
From the Top True
Draw Arrows False
Go Around Extruder Off Travel False
Layer (index): 0
Layer Extra Span (integer): 912345678
Line (index): 24
Display Line True
View Move False
View Rotate False
Number of Fill Bottom Layers (integer): 1
Number of Fill Top Layers (integer): 1
Scale (pixels per millimeter): 15.0
Screen Horizontal Inset (pixels): 100
Screen Vertical Inset (pixels): 220
Show Gcode True
Viewpoint Latitude (degrees): 15.0
Viewpoint Longitude (degrees): 210.0
Width of Axis Negative Side (pixels): 2
Width of Axis Positive Side (pixels): 6
Width of Fill Bottom Thread (pixels): 2
Width of Fill Top Thread (pixels): 2
Width of Infill Thread (pixels): 1
Width of Loop Thread (pixels): 2
Width of Perimeter Inside Thread (pixels): 8
Width of Perimeter Outside Thread (pixels): 8
Width of Raft Thread (pixels): 1
Width of Selection Thread (pixels): 6
Width of Travel Thread (pixels): 0
1 Format is tab separated skeiniso settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Skeiniso
5 Activate Skeiniso True
6 Frame List
7 Animation Line Quickening (ratio): 1.0
8 Animation Slide Show Rate (layers/second): 2.0
9 Axis Rulings True
10 Band Height (layers): 5
11 Bottom Band Brightness (ratio): 0.7
12 Bottom Layer Brightness (ratio): 1.0
13 From the Bottom False
14 From the Top True
15 Draw Arrows False
16 Go Around Extruder Off Travel False
17 Layer (index): 0
18 Layer Extra Span (integer): 912345678
19 Line (index): 24
20 Display Line True
21 View Move False
22 View Rotate False
23 Number of Fill Bottom Layers (integer): 1
24 Number of Fill Top Layers (integer): 1
25 Scale (pixels per millimeter): 15.0
26 Screen Horizontal Inset (pixels): 100
27 Screen Vertical Inset (pixels): 220
28 Show Gcode True
29 Viewpoint Latitude (degrees): 15.0
30 Viewpoint Longitude (degrees): 210.0
31 Width of Axis Negative Side (pixels): 2
32 Width of Axis Positive Side (pixels): 6
33 Width of Fill Bottom Thread (pixels): 2
34 Width of Fill Top Thread (pixels): 2
35 Width of Infill Thread (pixels): 1
36 Width of Loop Thread (pixels): 2
37 Width of Perimeter Inside Thread (pixels): 8
38 Width of Perimeter Outside Thread (pixels): 8
39 Width of Raft Thread (pixels): 1
40 Width of Selection Thread (pixels): 6
41 Width of Travel Thread (pixels): 0

View File

@ -0,0 +1,23 @@
Format is tab separated skeinlayer settings.
_Name Value
WindowPosition 700+0
Open File for Skeinlayer
Activate Skeinlayer True
Frame List
Animation Line Quickening (ratio): 1.0
Animation Slide Show Rate (layers/second): 2.0
Draw Arrows True
Go Around Extruder Off Travel False
Layer (index): 0
Layer Extra Span (integer): 0
Line (index): 430
Display Line True
View Move False
Scale (pixels per millimeter): 25.0
Screen Horizontal Inset (pixels): 100
Screen Vertical Inset (pixels): 220
Show Gcode True
Show Position True
Width of Extrusion Thread (pixels): 3
Width of Selection Thread (pixels): 6
Width of Travel Thread (pixels): 1
1 Format is tab separated skeinlayer settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Skeinlayer
5 Activate Skeinlayer True
6 Frame List
7 Animation Line Quickening (ratio): 1.0
8 Animation Slide Show Rate (layers/second): 2.0
9 Draw Arrows True
10 Go Around Extruder Off Travel False
11 Layer (index): 0
12 Layer Extra Span (integer): 0
13 Line (index): 430
14 Display Line True
15 View Move False
16 Scale (pixels per millimeter): 25.0
17 Screen Horizontal Inset (pixels): 100
18 Screen Vertical Inset (pixels): 220
19 Show Gcode True
20 Show Position True
21 Width of Extrusion Thread (pixels): 3
22 Width of Selection Thread (pixels): 6
23 Width of Travel Thread (pixels): 1

View File

@ -0,0 +1,8 @@
Format is tab separated skin settings.
_Name Value
WindowPosition 700+0
Open File for Skin
Activate Skin: this is experimental.
It prints the perimeters and loops only at half the layer height that is specified under carve. False
Clip Over Perimeter Width (scaler): 1.0
Do Not Skin the first ... Layers: 3
1 Format is tab separated skin settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Skin
5 Activate Skin: this is experimental.
6 It prints the perimeters and loops only at half the layer height that is specified under carve. False
7 Clip Over Perimeter Width (scaler): 1.0
8 Do Not Skin the first ... Layers: 3

View File

@ -0,0 +1,8 @@
Format is tab separated skirt settings.
_Name Value
WindowPosition 700+0
Open File for Skirt
Activate Skirt: True
Convex: True
Gap over Perimeter Width (ratio): 5.0
Layers To (index): 3
1 Format is tab separated skirt settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Skirt
5 Activate Skirt: True
6 Convex: True
7 Gap over Perimeter Width (ratio): 5.0
8 Layers To (index): 3

View File

@ -0,0 +1,14 @@
Format is tab separated speed settings.
_Name Value
WindowPosition 700+0
Open File for Speed
Activate Speed: True
Add Flow Rate: True
Main Feed Rate (mm/s): 60.0
Main Flow Rate (scaler): 1.0
Feed Rate ratio for Orbiting move (ratio): 0.5
Perimeter Feed Rate (mm/s): 30.0
Perimeter Flow Rate (scaler): 1.0
Bridge Feed Rate (ratio): 1.0
Bridge Flow Rate (scaler): 1.0
Travel Feed Rate (mm/s): 130.0
1 Format is tab separated speed settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Speed
5 Activate Speed: True
6 Add Flow Rate: True
7 Main Feed Rate (mm/s): 60.0
8 Main Flow Rate (scaler): 1.0
9 Feed Rate ratio for Orbiting move (ratio): 0.5
10 Perimeter Feed Rate (mm/s): 30.0
11 Perimeter Flow Rate (scaler): 1.0
12 Bridge Feed Rate (ratio): 1.0
13 Bridge Flow Rate (scaler): 1.0
14 Travel Feed Rate (mm/s): 130.0

View File

@ -0,0 +1,11 @@
Format is tab separated statistic settings.
_Name Value
WindowPosition 700+0
Activate Statistic True
Machine Time ($/hour): 1.0
Material ($/kg): 20.0
Density (kg/m3): 930.0
Extrusion Diameter over Thickness (ratio): 1.25
Open File to Generate Statistics for
Print Statistics True
Save Statistics False
1 Format is tab separated statistic settings.
2 _Name Value
3 WindowPosition 700+0
4 Activate Statistic True
5 Machine Time ($/hour): 1.0
6 Material ($/kg): 20.0
7 Density (kg/m3): 930.0
8 Extrusion Diameter over Thickness (ratio): 1.25
9 Open File to Generate Statistics for
10 Print Statistics True
11 Save Statistics False

View File

@ -0,0 +1,11 @@
Format is tab separated stretch settings.
_Name Value
WindowPosition 700+0
Open File for Stretch
Activate Stretch to correct for diameter shrink in small diameter holes False
Cross Limit Distance Over Perimeter Width (ratio): 5.0
Loop Stretch Over Perimeter Width (ratio): 0.11
Path Stretch Over Perimeter Width (ratio): 0.0
Perimeter Inside Stretch Over Perimeter Width (ratio): 0.32
Perimeter Outside Stretch Over Perimeter Width (ratio): 0.1
Stretch From Distance Over Perimeter Width (ratio): 2.0
1 Format is tab separated stretch settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Stretch
5 Activate Stretch to correct for diameter shrink in small diameter holes False
6 Cross Limit Distance Over Perimeter Width (ratio): 5.0
7 Loop Stretch Over Perimeter Width (ratio): 0.11
8 Path Stretch Over Perimeter Width (ratio): 0.0
9 Perimeter Inside Stretch Over Perimeter Width (ratio): 0.32
10 Perimeter Outside Stretch Over Perimeter Width (ratio): 0.1
11 Stretch From Distance Over Perimeter Width (ratio): 2.0

View File

@ -0,0 +1,14 @@
Format is tab separated temperature settings.
_Name Value
WindowPosition 700+0
Open File for Temperature
Activate Temperature: False
Cooling Rate (Celcius/second): 3.0
Heating Rate (Celcius/second): 3.0
Base Temperature (Celcius): 210.0
Interface Temperature (Celcius): 210.0
Object First Layer Infill Temperature (Celcius): 210.0
Object First Layer Perimeter Temperature (Celcius): 210.0
Object Next Layers Temperature (Celcius): 210.0
Support Layers Temperature (Celcius): 210.0
Supported Layers Temperature (Celcius): 210.0
1 Format is tab separated temperature settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Temperature
5 Activate Temperature: False
6 Cooling Rate (Celcius/second): 3.0
7 Heating Rate (Celcius/second): 3.0
8 Base Temperature (Celcius): 210.0
9 Interface Temperature (Celcius): 210.0
10 Object First Layer Infill Temperature (Celcius): 210.0
11 Object First Layer Perimeter Temperature (Celcius): 210.0
12 Object Next Layers Temperature (Celcius): 210.0
13 Support Layers Temperature (Celcius): 210.0
14 Supported Layers Temperature (Celcius): 210.0

View File

@ -0,0 +1,11 @@
Format is tab separated vectorwrite settings.
_Name Value
WindowPosition 700+0
Activate Vectorwrite False
Open File to Write Vector Graphics for
Add Loops True
Add Paths True
Add Perimeters True
Layers From (index): 0
Layers To (index): 912345678
SVG Viewer: webbrowser
1 Format is tab separated vectorwrite settings.
2 _Name Value
3 WindowPosition 700+0
4 Activate Vectorwrite False
5 Open File to Write Vector Graphics for
6 Add Loops True
7 Add Paths True
8 Add Perimeters True
9 Layers From (index): 0
10 Layers To (index): 912345678
11 SVG Viewer: webbrowser

View File

@ -0,0 +1,15 @@
Format is tab separated wipe settings.
_Name Value
WindowPosition 700+0
Open File for Wipe
Activate Wipe False
Location Arrival X (mm): 0.0
Location Arrival Y (mm): 5.0
Location Arrival Z (mm): 0.0
Location Departure X (mm): 5.0
Location Departure Y (mm): 0.0
Location Departure Z (mm): 0.0
Location Wipe X (mm): 0.0
Location Wipe Y (mm): 0.0
Location Wipe Z (mm): 0.0
Wipe Period (layers): 15
1 Format is tab separated wipe settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Wipe
5 Activate Wipe False
6 Location Arrival X (mm): 0.0
7 Location Arrival Y (mm): 5.0
8 Location Arrival Z (mm): 0.0
9 Location Departure X (mm): 5.0
10 Location Departure Y (mm): 0.0
11 Location Departure Z (mm): 0.0
12 Location Wipe X (mm): 0.0
13 Location Wipe Y (mm): 0.0
14 Location Wipe Z (mm): 0.0
15 Wipe Period (layers): 15

View File

@ -0,0 +1,8 @@
Format is tab separated bottom settings.
_Name Value
WindowPosition 700+0
Open File for Bottom
Activate Bottom... and dont change anything else here!!! True
Additional Height (ratio): 0.5
Altitude (mm): 0.0
SVG Viewer: webbrowser
1 Format is tab separated bottom settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Bottom
5 Activate Bottom... and dont change anything else here!!! True
6 Additional Height (ratio): 0.5
7 Altitude (mm): 0.0
8 SVG Viewer: webbrowser

View File

@ -0,0 +1,15 @@
Format is tab separated carve settings.
_Name Value
WindowPosition 700+0
Open File for Carve
Layer Height = Extrusion Thickness (mm): 0.4
Extrusion Width (mm): 0.6
Print from Layer No:: 0
Print up to Layer No: 912345678
Infill in Direction of Bridge True
Correct Mesh True
Unproven Mesh False
SVG Viewer: webbrowser
Add Layer Template to SVG True
Extra Decimal Places (float): 2.0
Import Coarseness (ratio): 1.0
1 Format is tab separated carve settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Carve
5 Layer Height = Extrusion Thickness (mm): 0.4
6 Extrusion Width (mm): 0.6
7 Print from Layer No:: 0
8 Print up to Layer No: 912345678
9 Infill in Direction of Bridge True
10 Correct Mesh True
11 Unproven Mesh False
12 SVG Viewer: webbrowser
13 Add Layer Template to SVG True
14 Extra Decimal Places (float): 2.0
15 Import Coarseness (ratio): 1.0

View File

@ -0,0 +1,8 @@
Format is tab separated chamber settings.
_Name Value
WindowPosition 700+0
Open File for Chamber
Activate Chamber..if you want below functions to work True
Heated PrintBed Temperature (Celcius): 60.0
Turn print Bed Heater Off at Shut Down True
Turn Extruder Heater Off at Shut Down True
1 Format is tab separated chamber settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Chamber
5 Activate Chamber..if you want below functions to work True
6 Heated PrintBed Temperature (Celcius): 60.0
7 Turn print Bed Heater Off at Shut Down True
8 Turn Extruder Heater Off at Shut Down True

View File

@ -0,0 +1,6 @@
Format is tab separated clairvoyance settings.
_Name Value
WindowPosition 700+0
Activate Clairvoyance False
Open File to Generate Clairvoyances for
Gcode Program: webbrowser
1 Format is tab separated clairvoyance settings.
2 _Name Value
3 WindowPosition 700+0
4 Activate Clairvoyance False
5 Open File to Generate Clairvoyances for
6 Gcode Program: webbrowser

View File

@ -0,0 +1,7 @@
Format is tab separated clip settings.
_Name Value
WindowPosition 700+0
Open File for Clip
Activate Clip..to clip the extrusion that overlaps when printing perimeters True
Clip Over Perimeter Width adjuster (decrease for bigger gap): 1.0
Threshold for connecting inner loops (ratio): 2.5
1 Format is tab separated clip settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Clip
5 Activate Clip..to clip the extrusion that overlaps when printing perimeters True
6 Clip Over Perimeter Width adjuster (decrease for bigger gap): 1.0
7 Threshold for connecting inner loops (ratio): 2.5

View File

@ -0,0 +1,9 @@
Format is tab separated comb settings.
_Name Value
WindowPosition 700+0
Open File for Comb
Activate Comb if you cant stop the extruder stringing by retraction
it will avoid moving over loops so the strings will be there
but not visible anymore.
Comb bends the extruder travel paths around holes in the slices, to avoid stringing.
so any start up ooze will be inside the shape. True
1 Format is tab separated comb settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Comb
5 Activate Comb if you cant stop the extruder stringing by retraction
6 it will avoid moving over loops so the strings will be there
7 but not visible anymore.
8 Comb bends the extruder travel paths around holes in the slices, to avoid stringing.
9 so any start up ooze will be inside the shape. True

View File

@ -0,0 +1,5 @@
Format is tab separated comment settings.
_Name Value
WindowPosition 700+0
Activate Comment False
Open File to Write Comments for
1 Format is tab separated comment settings.
2 _Name Value
3 WindowPosition 700+0
4 Activate Comment False
5 Open File to Write Comments for

View File

@ -0,0 +1,15 @@
Format is tab separated cool settings.
_Name Value
WindowPosition 700+0
Open File for Cool
Activate Cool.. but use with a fan! False
Use Cool if layer takes shorter than(seconds): 10.0
Turn Fan On at Beginning True
Turn Fan Off at Ending True
Execute when Cool starts: cool_start.gmc
Execute when Cool ends: cool_end.gmc
Orbiting around Object False
Slow Down during print True
Maximum Cool (Celcius): 2.0
Bridge Cool (Celcius): 1.0
Minimum Orbital Radius (millimeters): 10.0
1 Format is tab separated cool settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Cool
5 Activate Cool.. but use with a fan! False
6 Use Cool if layer takes shorter than(seconds): 10.0
7 Turn Fan On at Beginning True
8 Turn Fan Off at Ending True
9 Execute when Cool starts: cool_start.gmc
10 Execute when Cool ends: cool_end.gmc
11 Orbiting around Object False
12 Slow Down during print True
13 Maximum Cool (Celcius): 2.0
14 Bridge Cool (Celcius): 1.0
15 Minimum Orbital Radius (millimeters): 10.0

View File

@ -0,0 +1,15 @@
Format is tab separated dimension settings.
_Name Value
WindowPosition 700+0
Open File for Dimension
Activate Volumetric Extrusion (Stepper driven Extruders) True
Filament Diameter (mm): 1.75
Filament Packing Density (ratio) lower=more extrusion: 1.0
Retraction Distance (millimeters): 1.0
Restart Extra Distance (millimeters): 0.0
Extruder Retraction Speed (mm/s): 15.0
Force to retract when crossing over spaces True
Minimum Extrusion before Retraction (millimeters): 1.0
Minimum Travelmove after Retraction (millimeters): 1.0
in Absolute units (Sprinter, FiveD a.o.) True
in Relative units (Teacup a.o.) False
Can't render this file because it has a wrong number of fields in line 14.

View File

@ -0,0 +1,20 @@
Format is tab separated export settings.
_Name Value
WindowPosition 700+0
Open File for Export
Activate Export True
Add _export to filename (filename_export) True
Also Send Output To:
Do Not Delete Comments False
Delete Crafting Comments False
Delete All Comments True
Do Not Change Output False
gcode_small True
File Extension (gcode): gcode
Name of Replace File: replace.csv
Save Penultimate Gcode False
Archive Used Profile As Zip False
Export Profile Values As CSV File False
Add Profile Name to Filename False
Add Description to Filename False
Add Timestamp to Filename False
1 Format is tab separated export settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Export
5 Activate Export True
6 Add _export to filename (filename_export) True
7 Also Send Output To:
8 Do Not Delete Comments False
9 Delete Crafting Comments False
10 Delete All Comments True
11 Do Not Change Output False
12 gcode_small True
13 File Extension (gcode): gcode
14 Name of Replace File: replace.csv
15 Save Penultimate Gcode False
16 Archive Used Profile As Zip False
17 Export Profile Values As CSV File False
18 Add Profile Name to Filename False
19 Add Description to Filename False
20 Add Timestamp to Filename False

View File

@ -0,0 +1,34 @@
Format is tab separated fill settings.
_Name Value
WindowPosition 700+0
Open File for Fill
Activate Fill: True
Infill Solidity (ratio): 0.35
Extrusion Lines extra Spacing (Scaler): 1.0
Infill Overlap over Perimeter (Scaler): 1.0
Extra Shells on Alternating Solid Layer (layers): 1
Extra Shells on Base (layers): 1
Extra Shells on Sparse Layer (layers): 1
Fully filled Layers (each top and bottom): 2
Lower Left True
Nearest False
Infill > Loops > Perimeter False
Infill > Perimeter > Loops False
Loops > Infill > Perimeter False
Loops > Perimeter > Infill False
Perimeter > Infill > Loops False
Perimeter > Loops > Infill True
Line True
Grid Circular False
Grid Hexagonal False
Grid Rectangular False
Diaphragm at every ...th Layer: 100
Diaphragm Thickness (layers): 0
Grid Circle Separation over Perimeter Width (ratio): 0.2
Grid Extra Overlap (ratio): 0.1
Grid Junction Separation Band Height (layers): 10
Grid Junction Separation over Octogon Radius At End (ratio): 0.0
Grid Junction Separation over Octogon Radius At Middle (ratio): 0.0
Infill Begin Rotation (degrees): 45.0
Infill Begin Rotation Repeat (layers): 1
Infill Odd Layer Extra Rotation (degrees): 90.0
1 Format is tab separated fill settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Fill
5 Activate Fill: True
6 Infill Solidity (ratio): 0.35
7 Extrusion Lines extra Spacing (Scaler): 1.0
8 Infill Overlap over Perimeter (Scaler): 1.0
9 Extra Shells on Alternating Solid Layer (layers): 1
10 Extra Shells on Base (layers): 1
11 Extra Shells on Sparse Layer (layers): 1
12 Fully filled Layers (each top and bottom): 2
13 Lower Left True
14 Nearest False
15 Infill > Loops > Perimeter False
16 Infill > Perimeter > Loops False
17 Loops > Infill > Perimeter False
18 Loops > Perimeter > Infill False
19 Perimeter > Infill > Loops False
20 Perimeter > Loops > Infill True
21 Line True
22 Grid Circular False
23 Grid Hexagonal False
24 Grid Rectangular False
25 Diaphragm at every ...th Layer: 100
26 Diaphragm Thickness (layers): 0
27 Grid Circle Separation over Perimeter Width (ratio): 0.2
28 Grid Extra Overlap (ratio): 0.1
29 Grid Junction Separation Band Height (layers): 10
30 Grid Junction Separation over Octogon Radius At End (ratio): 0.0
31 Grid Junction Separation over Octogon Radius At Middle (ratio): 0.0
32 Infill Begin Rotation (degrees): 45.0
33 Infill Begin Rotation Repeat (layers): 1
34 Infill Odd Layer Extra Rotation (degrees): 90.0

View File

@ -0,0 +1,6 @@
Format is tab separated home settings.
_Name Value
WindowPosition 700+0
Open File for Home
Activate Home ... Not needed True
Name of Homing File: homing.gcode
1 Format is tab separated home settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Home
5 Activate Home ... Not needed True
6 Name of Homing File: homing.gcode

View File

@ -0,0 +1,8 @@
Format is tab separated inset settings.
_Name Value
WindowPosition 700+0
Open File for Inset
Bridge Width Multiplier (ratio): 1.0
Prefer Loops False
Prefer Perimeter True
Overlap Removal(Scaler): 1.0
1 Format is tab separated inset settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Inset
5 Bridge Width Multiplier (ratio): 1.0
6 Prefer Loops False
7 Prefer Perimeter True
8 Overlap Removal(Scaler): 1.0

View File

@ -0,0 +1,7 @@
Format is tab separated interpret settings.
_Name Value
WindowPosition 700+0
Open File for Interpret
Activate Interpret False
Print Interpretion False
Text Program: webbrowser
1 Format is tab separated interpret settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Interpret
5 Activate Interpret False
6 Print Interpretion False
7 Text Program: webbrowser

View File

@ -0,0 +1,6 @@
Format is tab separated jitter settings.
_Name Value
WindowPosition 700+0
Open File for Jitter
Activate Jitter to have your perimeter and loop endpoints scattered False
Jitter Over Perimeter Width (ratio): 2.0
1 Format is tab separated jitter settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Jitter
5 Activate Jitter to have your perimeter and loop endpoints scattered False
6 Jitter Over Perimeter Width (ratio): 2.0

View File

@ -0,0 +1,8 @@
Format is tab separated lash settings.
_Name Value
WindowPosition 700+0
Open File for Lash
Activate Lash if you have backlash in your axes.
But its better to fix the mechanical problem! False
X Backlash (mm): 0.0
Y Backlash (mm): 0.0
1 Format is tab separated lash settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Lash
5 Activate Lash if you have backlash in your axes.
6 But its better to fix the mechanical problem! False
7 X Backlash (mm): 0.0
8 Y Backlash (mm): 0.0

View File

@ -0,0 +1,7 @@
Format is tab separated limit settings.
_Name Value
WindowPosition 700+0
Open File for Limit
Activate Limit if your Firmware is unable to Limiting your Z-Speed. False
Maximum Initial Feed Rate (mm/s): 5.0
Maximum Z Feed Rate (mm/s): 5.0
1 Format is tab separated limit settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Limit
5 Activate Limit if your Firmware is unable to Limiting your Z-Speed. False
6 Maximum Initial Feed Rate (mm/s): 5.0
7 Maximum Z Feed Rate (mm/s): 5.0

View File

@ -0,0 +1,10 @@
Format is tab separated multiply settings.
_Name Value
WindowPosition 700+0
Open File for Multiply
Activate Multiply: True
Center X (mm): 100.0
Center Y (mm): 100.0
Number of Columns (integer): 1
Number of Rows (integer): 1
Separation over Perimeter Width (ratio): 15.0
1 Format is tab separated multiply settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Multiply
5 Activate Multiply: True
6 Center X (mm): 100.0
7 Center Y (mm): 100.0
8 Number of Columns (integer): 1
9 Number of Rows (integer): 1
10 Separation over Perimeter Width (ratio): 15.0

View File

@ -0,0 +1,5 @@
Format is tab separated polyfile settings.
_Name Value
WindowPosition 700+0
Execute All Unmodified Files in a Directory False
Execute File True
1 Format is tab separated polyfile settings.
2 _Name Value
3 WindowPosition 700+0
4 Execute All Unmodified Files in a Directory False
5 Execute File True

View File

@ -0,0 +1,11 @@
Format is tab separated preface settings.
Home before Print False
_Name Value
WindowPosition 700+0
Open File for Preface
Reset Extruder before Print True
Meta:
Name of End File: end.gmc
Name of Start File: start.gmc
Set Positioning to Absolute True
Set Units to Millimeters True
1 Format is tab separated preface settings.
2 Home before Print False
3 _Name Value
4 WindowPosition 700+0
5 Open File for Preface
6 Reset Extruder before Print True
7 Meta:
8 Name of End File: end.gmc
9 Name of Start File: start.gmc
10 Set Positioning to Absolute True
11 Set Units to Millimeters True

View File

@ -0,0 +1,38 @@
Format is tab separated raft settings.
_Name Value
WindowPosition 700+0
Open File for Raft
Activate Raft True
Add Raft, Elevate Nozzle, Orbit: True
None True
Empty Layers Only False
Everywhere False
Exterior Only False
Add support if flatter than (degrees): 50.0
Cross Hatch instead of Lines False
Interface/Support Lines Density (ratio): 0.25
Interface/Support Layer Thickness over Layer Thickness: 1.0
Support Feed Rate mm/sec: 15.0
Support Flow Rate (scaler): 1.0
Support Gap over Perimeter Extrusion Width (ratio): 1.0
Raft/Support extension in (%): 5.0
Raft/Support extension in(mm): 2.0
Name of Support End File: support_end.gmc
Name of Support Start File: support_start.gmc
Extra Nozzle clearance over Object(ratio): 0.0
First Layer Main Feedrate (mm/s): 35.0
First Layer Perimeter Feedrate (mm/s): 25.0
First Layer Flow Rate Infill(scaler): 1.0
First Layer Flow Rate Perimeter(scaler): 1.0
Interface Layers (integer): 0
Interface Feed Rate Multiplier (ratio): 1.0
Interface Flow Rate Multiplier (ratio): 1.0
Interface Nozzle Lift over Interface Layer Thickness (ratio): 0.45
Base Layers (integer): 0
Base Feed Rate Multiplier (ratio): 0.5
Base Flow Rate Multiplier (ratio): 0.5
Base Infill Density (ratio): 0.5
Base Layer Thickness over Layer Thickness: 2.0
Base Nozzle Lift over Base Layer Thickness (ratio): 0.4
Initial Circling: False
Infill Overhang over Extrusion Width (ratio): 3.0
1 Format is tab separated raft settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Raft
5 Activate Raft True
6 Add Raft, Elevate Nozzle, Orbit: True
7 None True
8 Empty Layers Only False
9 Everywhere False
10 Exterior Only False
11 Add support if flatter than (degrees): 50.0
12 Cross Hatch instead of Lines False
13 Interface/Support Lines Density (ratio): 0.25
14 Interface/Support Layer Thickness over Layer Thickness: 1.0
15 Support Feed Rate mm/sec: 15.0
16 Support Flow Rate (scaler): 1.0
17 Support Gap over Perimeter Extrusion Width (ratio): 1.0
18 Raft/Support extension in (%): 5.0
19 Raft/Support extension in(mm): 2.0
20 Name of Support End File: support_end.gmc
21 Name of Support Start File: support_start.gmc
22 Extra Nozzle clearance over Object(ratio): 0.0
23 First Layer Main Feedrate (mm/s): 35.0
24 First Layer Perimeter Feedrate (mm/s): 25.0
25 First Layer Flow Rate Infill(scaler): 1.0
26 First Layer Flow Rate Perimeter(scaler): 1.0
27 Interface Layers (integer): 0
28 Interface Feed Rate Multiplier (ratio): 1.0
29 Interface Flow Rate Multiplier (ratio): 1.0
30 Interface Nozzle Lift over Interface Layer Thickness (ratio): 0.45
31 Base Layers (integer): 0
32 Base Feed Rate Multiplier (ratio): 0.5
33 Base Flow Rate Multiplier (ratio): 0.5
34 Base Infill Density (ratio): 0.5
35 Base Layer Thickness over Layer Thickness: 2.0
36 Base Nozzle Lift over Base Layer Thickness (ratio): 0.4
37 Initial Circling: False
38 Infill Overhang over Extrusion Width (ratio): 3.0

View File

@ -0,0 +1,8 @@
Format is tab separated scale settings.
_Name Value
WindowPosition 700+0
Open File for Scale
Activate Scale to finetune print size (try to find the fault somewhere else..): False
XY Plane Scale (ratio): 1.0
Z Axis Scale (ratio): 1.0
SVG Viewer: webbrowser
1 Format is tab separated scale settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Scale
5 Activate Scale to finetune print size (try to find the fault somewhere else..): False
6 XY Plane Scale (ratio): 1.0
7 Z Axis Scale (ratio): 1.0
8 SVG Viewer: webbrowser

View File

@ -0,0 +1,9 @@
Format is tab separated skeinforge settings.
_Name Value
WindowPosition 1187+2
Open File for Skeinforge C:/Users/Ahmet/STL/_Screw Holder Bottom.stl
analyze False
craft True
help False
meta False
profile False
1 Format is tab separated skeinforge settings.
2 _Name Value
3 WindowPosition 1187+2
4 Open File for Skeinforge C:/Users/Ahmet/STL/_Screw Holder Bottom.stl
5 analyze False
6 craft True
7 help False
8 meta False
9 profile False

View File

@ -0,0 +1,11 @@
Format is tab separated skeinforge analyze settings.
_Name Value
WindowPosition 600+0
Open File for Analyze
clairvoyance False
comment False
interpret False
skeiniso True
skeinlayer True
statistic False
vectorwrite False
1 Format is tab separated skeinforge analyze settings.
2 _Name Value
3 WindowPosition 600+0
4 Open File for Analyze
5 clairvoyance False
6 comment False
7 interpret False
8 skeiniso True
9 skeinlayer True
10 statistic False
11 vectorwrite False

View File

@ -0,0 +1,27 @@
Format is tab separated skeinforge craft settings.
_Name Value
WindowPosition 600+0
Open File for Craft
bottom False
carve False
chamber False
clip False
comb False
cool False
dimension True
export False
fill False
inset False
jitter False
lash False
limit False
multiply False
preface False
raft False
scale False
skin False
skirt False
speed False
stretch False
temperature False
wipe False
1 Format is tab separated skeinforge craft settings.
2 _Name Value
3 WindowPosition 600+0
4 Open File for Craft
5 bottom False
6 carve False
7 chamber False
8 clip False
9 comb False
10 cool False
11 dimension True
12 export False
13 fill False
14 inset False
15 jitter False
16 lash False
17 limit False
18 multiply False
19 preface False
20 raft False
21 scale False
22 skin False
23 skirt False
24 speed False
25 stretch False
26 temperature False
27 wipe False

View File

@ -0,0 +1,4 @@
Format is tab separated skeinforge help settings.
_Name Value
WindowPosition 600+0
Wiki Manual Primary True
1 Format is tab separated skeinforge help settings.
2 _Name Value
3 WindowPosition 600+0
4 Wiki Manual Primary True

View File

@ -0,0 +1,41 @@
Format is tab separated skeiniso settings.
_Name Value
WindowPosition 700+0
Open File for Skeiniso
Activate Skeiniso True
Frame List
Animation Line Quickening (ratio): 1.0
Animation Slide Show Rate (layers/second): 2.0
Axis Rulings True
Band Height (layers): 5
Bottom Band Brightness (ratio): 0.7
Bottom Layer Brightness (ratio): 1.0
From the Bottom False
From the Top True
Draw Arrows False
Go Around Extruder Off Travel False
Layer (index): 0
Layer Extra Span (integer): 912345678
Line (index): 24
Display Line True
View Move False
View Rotate False
Number of Fill Bottom Layers (integer): 1
Number of Fill Top Layers (integer): 1
Scale (pixels per millimeter): 15.0
Screen Horizontal Inset (pixels): 100
Screen Vertical Inset (pixels): 220
Show Gcode True
Viewpoint Latitude (degrees): 15.0
Viewpoint Longitude (degrees): 210.0
Width of Axis Negative Side (pixels): 2
Width of Axis Positive Side (pixels): 6
Width of Fill Bottom Thread (pixels): 2
Width of Fill Top Thread (pixels): 2
Width of Infill Thread (pixels): 1
Width of Loop Thread (pixels): 2
Width of Perimeter Inside Thread (pixels): 8
Width of Perimeter Outside Thread (pixels): 8
Width of Raft Thread (pixels): 1
Width of Selection Thread (pixels): 6
Width of Travel Thread (pixels): 0
1 Format is tab separated skeiniso settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Skeiniso
5 Activate Skeiniso True
6 Frame List
7 Animation Line Quickening (ratio): 1.0
8 Animation Slide Show Rate (layers/second): 2.0
9 Axis Rulings True
10 Band Height (layers): 5
11 Bottom Band Brightness (ratio): 0.7
12 Bottom Layer Brightness (ratio): 1.0
13 From the Bottom False
14 From the Top True
15 Draw Arrows False
16 Go Around Extruder Off Travel False
17 Layer (index): 0
18 Layer Extra Span (integer): 912345678
19 Line (index): 24
20 Display Line True
21 View Move False
22 View Rotate False
23 Number of Fill Bottom Layers (integer): 1
24 Number of Fill Top Layers (integer): 1
25 Scale (pixels per millimeter): 15.0
26 Screen Horizontal Inset (pixels): 100
27 Screen Vertical Inset (pixels): 220
28 Show Gcode True
29 Viewpoint Latitude (degrees): 15.0
30 Viewpoint Longitude (degrees): 210.0
31 Width of Axis Negative Side (pixels): 2
32 Width of Axis Positive Side (pixels): 6
33 Width of Fill Bottom Thread (pixels): 2
34 Width of Fill Top Thread (pixels): 2
35 Width of Infill Thread (pixels): 1
36 Width of Loop Thread (pixels): 2
37 Width of Perimeter Inside Thread (pixels): 8
38 Width of Perimeter Outside Thread (pixels): 8
39 Width of Raft Thread (pixels): 1
40 Width of Selection Thread (pixels): 6
41 Width of Travel Thread (pixels): 0

View File

@ -0,0 +1,23 @@
Format is tab separated skeinlayer settings.
_Name Value
WindowPosition 700+0
Open File for Skeinlayer
Activate Skeinlayer True
Frame List
Animation Line Quickening (ratio): 1.0
Animation Slide Show Rate (layers/second): 2.0
Draw Arrows True
Go Around Extruder Off Travel False
Layer (index): 0
Layer Extra Span (integer): 0
Line (index): 430
Display Line True
View Move False
Scale (pixels per millimeter): 25.0
Screen Horizontal Inset (pixels): 100
Screen Vertical Inset (pixels): 220
Show Gcode True
Show Position True
Width of Extrusion Thread (pixels): 3
Width of Selection Thread (pixels): 6
Width of Travel Thread (pixels): 1
1 Format is tab separated skeinlayer settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Skeinlayer
5 Activate Skeinlayer True
6 Frame List
7 Animation Line Quickening (ratio): 1.0
8 Animation Slide Show Rate (layers/second): 2.0
9 Draw Arrows True
10 Go Around Extruder Off Travel False
11 Layer (index): 0
12 Layer Extra Span (integer): 0
13 Line (index): 430
14 Display Line True
15 View Move False
16 Scale (pixels per millimeter): 25.0
17 Screen Horizontal Inset (pixels): 100
18 Screen Vertical Inset (pixels): 220
19 Show Gcode True
20 Show Position True
21 Width of Extrusion Thread (pixels): 3
22 Width of Selection Thread (pixels): 6
23 Width of Travel Thread (pixels): 1

View File

@ -0,0 +1,8 @@
Format is tab separated skin settings.
_Name Value
WindowPosition 700+0
Open File for Skin
Activate Skin: this is experimental.
It prints the perimeters and loops only at half the layer height that is specified under carve. False
Clip Over Perimeter Width (scaler): 1.0
Do Not Skin the first ... Layers: 3
1 Format is tab separated skin settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Skin
5 Activate Skin: this is experimental.
6 It prints the perimeters and loops only at half the layer height that is specified under carve. False
7 Clip Over Perimeter Width (scaler): 1.0
8 Do Not Skin the first ... Layers: 3

View File

@ -0,0 +1,8 @@
Format is tab separated skirt settings.
_Name Value
WindowPosition 700+0
Open File for Skirt
Activate Skirt: True
Convex: True
Gap over Perimeter Width (ratio): 5.0
Layers To (index): 3
1 Format is tab separated skirt settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Skirt
5 Activate Skirt: True
6 Convex: True
7 Gap over Perimeter Width (ratio): 5.0
8 Layers To (index): 3

View File

@ -0,0 +1,14 @@
Format is tab separated speed settings.
_Name Value
WindowPosition 700+0
Open File for Speed
Activate Speed: True
Add Flow Rate: True
Main Feed Rate (mm/s): 60.0
Main Flow Rate (scaler): 1.0
Feed Rate ratio for Orbiting move (ratio): 0.5
Perimeter Feed Rate (mm/s): 30.0
Perimeter Flow Rate (scaler): 1.0
Bridge Feed Rate (ratio): 1.0
Bridge Flow Rate (scaler): 1.0
Travel Feed Rate (mm/s): 130.0
1 Format is tab separated speed settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Speed
5 Activate Speed: True
6 Add Flow Rate: True
7 Main Feed Rate (mm/s): 60.0
8 Main Flow Rate (scaler): 1.0
9 Feed Rate ratio for Orbiting move (ratio): 0.5
10 Perimeter Feed Rate (mm/s): 30.0
11 Perimeter Flow Rate (scaler): 1.0
12 Bridge Feed Rate (ratio): 1.0
13 Bridge Flow Rate (scaler): 1.0
14 Travel Feed Rate (mm/s): 130.0

View File

@ -0,0 +1,11 @@
Format is tab separated statistic settings.
_Name Value
WindowPosition 700+0
Activate Statistic True
Machine Time ($/hour): 1.0
Material ($/kg): 20.0
Density (kg/m3): 930.0
Extrusion Diameter over Thickness (ratio): 1.25
Open File to Generate Statistics for
Print Statistics True
Save Statistics False
1 Format is tab separated statistic settings.
2 _Name Value
3 WindowPosition 700+0
4 Activate Statistic True
5 Machine Time ($/hour): 1.0
6 Material ($/kg): 20.0
7 Density (kg/m3): 930.0
8 Extrusion Diameter over Thickness (ratio): 1.25
9 Open File to Generate Statistics for
10 Print Statistics True
11 Save Statistics False

View File

@ -0,0 +1,11 @@
Format is tab separated stretch settings.
_Name Value
WindowPosition 700+0
Open File for Stretch
Activate Stretch to correct for diameter shrink in small diameter holes False
Cross Limit Distance Over Perimeter Width (ratio): 5.0
Loop Stretch Over Perimeter Width (ratio): 0.11
Path Stretch Over Perimeter Width (ratio): 0.0
Perimeter Inside Stretch Over Perimeter Width (ratio): 0.32
Perimeter Outside Stretch Over Perimeter Width (ratio): 0.1
Stretch From Distance Over Perimeter Width (ratio): 2.0
1 Format is tab separated stretch settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Stretch
5 Activate Stretch to correct for diameter shrink in small diameter holes False
6 Cross Limit Distance Over Perimeter Width (ratio): 5.0
7 Loop Stretch Over Perimeter Width (ratio): 0.11
8 Path Stretch Over Perimeter Width (ratio): 0.0
9 Perimeter Inside Stretch Over Perimeter Width (ratio): 0.32
10 Perimeter Outside Stretch Over Perimeter Width (ratio): 0.1
11 Stretch From Distance Over Perimeter Width (ratio): 2.0

View File

@ -0,0 +1,14 @@
Format is tab separated temperature settings.
_Name Value
WindowPosition 700+0
Open File for Temperature
Activate Temperature: False
Cooling Rate (Celcius/second): 3.0
Heating Rate (Celcius/second): 3.0
Base Temperature (Celcius): 210.0
Interface Temperature (Celcius): 210.0
Object First Layer Infill Temperature (Celcius): 210.0
Object First Layer Perimeter Temperature (Celcius): 210.0
Object Next Layers Temperature (Celcius): 210.0
Support Layers Temperature (Celcius): 210.0
Supported Layers Temperature (Celcius): 210.0
1 Format is tab separated temperature settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Temperature
5 Activate Temperature: False
6 Cooling Rate (Celcius/second): 3.0
7 Heating Rate (Celcius/second): 3.0
8 Base Temperature (Celcius): 210.0
9 Interface Temperature (Celcius): 210.0
10 Object First Layer Infill Temperature (Celcius): 210.0
11 Object First Layer Perimeter Temperature (Celcius): 210.0
12 Object Next Layers Temperature (Celcius): 210.0
13 Support Layers Temperature (Celcius): 210.0
14 Supported Layers Temperature (Celcius): 210.0

View File

@ -0,0 +1,11 @@
Format is tab separated vectorwrite settings.
_Name Value
WindowPosition 700+0
Activate Vectorwrite False
Open File to Write Vector Graphics for
Add Loops True
Add Paths True
Add Perimeters True
Layers From (index): 0
Layers To (index): 912345678
SVG Viewer: webbrowser
1 Format is tab separated vectorwrite settings.
2 _Name Value
3 WindowPosition 700+0
4 Activate Vectorwrite False
5 Open File to Write Vector Graphics for
6 Add Loops True
7 Add Paths True
8 Add Perimeters True
9 Layers From (index): 0
10 Layers To (index): 912345678
11 SVG Viewer: webbrowser

View File

@ -0,0 +1,15 @@
Format is tab separated wipe settings.
_Name Value
WindowPosition 700+0
Open File for Wipe
Activate Wipe False
Location Arrival X (mm): 0.0
Location Arrival Y (mm): 5.0
Location Arrival Z (mm): 0.0
Location Departure X (mm): 5.0
Location Departure Y (mm): 0.0
Location Departure Z (mm): 0.0
Location Wipe X (mm): 0.0
Location Wipe Y (mm): 0.0
Location Wipe Z (mm): 0.0
Wipe Period (layers): 33333
1 Format is tab separated wipe settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Wipe
5 Activate Wipe False
6 Location Arrival X (mm): 0.0
7 Location Arrival Y (mm): 5.0
8 Location Arrival Z (mm): 0.0
9 Location Departure X (mm): 5.0
10 Location Departure Y (mm): 0.0
11 Location Departure Z (mm): 0.0
12 Location Wipe X (mm): 0.0
13 Location Wipe Y (mm): 0.0
14 Location Wipe Z (mm): 0.0
15 Wipe Period (layers): 33333

View File

@ -0,0 +1,8 @@
Format is tab separated bottom settings.
_Name Value
WindowPosition 700+0
Open File for Bottom
Activate Bottom... and dont change anything else here!!! True
Additional Height (ratio): 0.5
Altitude (mm): 0.0
SVG Viewer: webbrowser
1 Format is tab separated bottom settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Bottom
5 Activate Bottom... and dont change anything else here!!! True
6 Additional Height (ratio): 0.5
7 Altitude (mm): 0.0
8 SVG Viewer: webbrowser

View File

@ -0,0 +1,15 @@
Format is tab separated carve settings.
_Name Value
WindowPosition 700+0
Open File for Carve
Layer Height = Extrusion Thickness (mm): 0.33
Extrusion Width (mm): 0.5
Print from Layer No:: 0
Print up to Layer No: 912345678
Infill in Direction of Bridge True
Correct Mesh True
Unproven Mesh False
SVG Viewer: webbrowser
Add Layer Template to SVG True
Extra Decimal Places (float): 2.0
Import Coarseness (ratio): 1.0
1 Format is tab separated carve settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Carve
5 Layer Height = Extrusion Thickness (mm): 0.33
6 Extrusion Width (mm): 0.5
7 Print from Layer No:: 0
8 Print up to Layer No: 912345678
9 Infill in Direction of Bridge True
10 Correct Mesh True
11 Unproven Mesh False
12 SVG Viewer: webbrowser
13 Add Layer Template to SVG True
14 Extra Decimal Places (float): 2.0
15 Import Coarseness (ratio): 1.0

View File

@ -0,0 +1,8 @@
Format is tab separated chamber settings.
_Name Value
WindowPosition 700+0
Open File for Chamber
Activate Chamber..if you want below functions to work True
Heated PrintBed Temperature (Celcius): 60.0
Turn print Bed Heater Off at Shut Down True
Turn Extruder Heater Off at Shut Down True
1 Format is tab separated chamber settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Chamber
5 Activate Chamber..if you want below functions to work True
6 Heated PrintBed Temperature (Celcius): 60.0
7 Turn print Bed Heater Off at Shut Down True
8 Turn Extruder Heater Off at Shut Down True

View File

@ -0,0 +1,6 @@
Format is tab separated clairvoyance settings.
_Name Value
WindowPosition 700+0
Activate Clairvoyance False
Open File to Generate Clairvoyances for
Gcode Program: webbrowser
1 Format is tab separated clairvoyance settings.
2 _Name Value
3 WindowPosition 700+0
4 Activate Clairvoyance False
5 Open File to Generate Clairvoyances for
6 Gcode Program: webbrowser

View File

@ -0,0 +1,7 @@
Format is tab separated clip settings.
_Name Value
WindowPosition 700+0
Open File for Clip
Activate Clip..to clip the extrusion that overlaps when printing perimeters True
Clip Over Perimeter Width adjuster (decrease for bigger gap): 1.0
Threshold for connecting inner loops (ratio): 2.5
1 Format is tab separated clip settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Clip
5 Activate Clip..to clip the extrusion that overlaps when printing perimeters True
6 Clip Over Perimeter Width adjuster (decrease for bigger gap): 1.0
7 Threshold for connecting inner loops (ratio): 2.5

View File

@ -0,0 +1,9 @@
Format is tab separated comb settings.
_Name Value
WindowPosition 700+0
Open File for Comb
Activate Comb if you cant stop the extruder stringing by retraction
it will avoid moving over loops so the strings will be there
but not visible anymore.
Comb bends the extruder travel paths around holes in the slices, to avoid stringing.
so any start up ooze will be inside the shape. True
1 Format is tab separated comb settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Comb
5 Activate Comb if you cant stop the extruder stringing by retraction
6 it will avoid moving over loops so the strings will be there
7 but not visible anymore.
8 Comb bends the extruder travel paths around holes in the slices, to avoid stringing.
9 so any start up ooze will be inside the shape. True

View File

@ -0,0 +1,5 @@
Format is tab separated comment settings.
_Name Value
WindowPosition 700+0
Activate Comment False
Open File to Write Comments for
1 Format is tab separated comment settings.
2 _Name Value
3 WindowPosition 700+0
4 Activate Comment False
5 Open File to Write Comments for

View File

@ -0,0 +1,15 @@
Format is tab separated cool settings.
_Name Value
WindowPosition 700+0
Open File for Cool
Activate Cool.. but use with a fan! False
Use Cool if layer takes shorter than(seconds): 10.0
Turn Fan On at Beginning True
Turn Fan Off at Ending True
Execute when Cool starts: cool_start.gmc
Execute when Cool ends: cool_end.gmc
Orbiting around Object False
Slow Down during print True
Maximum Cool (Celcius): 2.0
Bridge Cool (Celcius): 1.0
Minimum Orbital Radius (millimeters): 10.0
1 Format is tab separated cool settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Cool
5 Activate Cool.. but use with a fan! False
6 Use Cool if layer takes shorter than(seconds): 10.0
7 Turn Fan On at Beginning True
8 Turn Fan Off at Ending True
9 Execute when Cool starts: cool_start.gmc
10 Execute when Cool ends: cool_end.gmc
11 Orbiting around Object False
12 Slow Down during print True
13 Maximum Cool (Celcius): 2.0
14 Bridge Cool (Celcius): 1.0
15 Minimum Orbital Radius (millimeters): 10.0

View File

@ -0,0 +1,15 @@
Format is tab separated dimension settings.
_Name Value
WindowPosition 700+0
Open File for Dimension
Activate Volumetric Extrusion (Stepper driven Extruders) True
Filament Diameter (mm): 2.85
Filament Packing Density (ratio) lower=more extrusion: 1.0
Retraction Distance (millimeters): 1.0
Restart Extra Distance (millimeters): 0.0
Extruder Retraction Speed (mm/s): 15.0
Force to retract when crossing over spaces True
Minimum Extrusion before Retraction (millimeters): 1.0
Minimum Travelmove after Retraction (millimeters): 1.0
in Absolute units (Sprinter, FiveD a.o.) True
in Relative units (Teacup a.o.) False
Can't render this file because it has a wrong number of fields in line 14.

View File

@ -0,0 +1,20 @@
Format is tab separated export settings.
_Name Value
WindowPosition 700+0
Open File for Export
Activate Export True
Add _export to filename (filename_export) True
Also Send Output To:
Do Not Delete Comments False
Delete Crafting Comments False
Delete All Comments True
Do Not Change Output False
gcode_small True
File Extension (gcode): gcode
Name of Replace File: replace.csv
Save Penultimate Gcode False
Archive Used Profile As Zip False
Export Profile Values As CSV File False
Add Profile Name to Filename False
Add Description to Filename False
Add Timestamp to Filename False
1 Format is tab separated export settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Export
5 Activate Export True
6 Add _export to filename (filename_export) True
7 Also Send Output To:
8 Do Not Delete Comments False
9 Delete Crafting Comments False
10 Delete All Comments True
11 Do Not Change Output False
12 gcode_small True
13 File Extension (gcode): gcode
14 Name of Replace File: replace.csv
15 Save Penultimate Gcode False
16 Archive Used Profile As Zip False
17 Export Profile Values As CSV File False
18 Add Profile Name to Filename False
19 Add Description to Filename False
20 Add Timestamp to Filename False

View File

@ -0,0 +1,34 @@
Format is tab separated fill settings.
_Name Value
WindowPosition 700+0
Open File for Fill
Activate Fill: True
Infill Solidity (ratio): 0.35
Extrusion Lines extra Spacing (Scaler): 1.0
Infill Overlap over Perimeter (Scaler): 1.0
Extra Shells on Alternating Solid Layer (layers): 1
Extra Shells on Base (layers): 1
Extra Shells on Sparse Layer (layers): 1
Fully filled Layers (each top and bottom): 2
Lower Left True
Nearest False
Infill > Loops > Perimeter False
Infill > Perimeter > Loops False
Loops > Infill > Perimeter False
Loops > Perimeter > Infill False
Perimeter > Infill > Loops False
Perimeter > Loops > Infill True
Line True
Grid Circular False
Grid Hexagonal False
Grid Rectangular False
Diaphragm at every ...th Layer: 100
Diaphragm Thickness (layers): 0
Grid Circle Separation over Perimeter Width (ratio): 0.2
Grid Extra Overlap (ratio): 0.1
Grid Junction Separation Band Height (layers): 10
Grid Junction Separation over Octogon Radius At End (ratio): 0.0
Grid Junction Separation over Octogon Radius At Middle (ratio): 0.0
Infill Begin Rotation (degrees): 45.0
Infill Begin Rotation Repeat (layers): 1
Infill Odd Layer Extra Rotation (degrees): 90.0
1 Format is tab separated fill settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Fill
5 Activate Fill: True
6 Infill Solidity (ratio): 0.35
7 Extrusion Lines extra Spacing (Scaler): 1.0
8 Infill Overlap over Perimeter (Scaler): 1.0
9 Extra Shells on Alternating Solid Layer (layers): 1
10 Extra Shells on Base (layers): 1
11 Extra Shells on Sparse Layer (layers): 1
12 Fully filled Layers (each top and bottom): 2
13 Lower Left True
14 Nearest False
15 Infill > Loops > Perimeter False
16 Infill > Perimeter > Loops False
17 Loops > Infill > Perimeter False
18 Loops > Perimeter > Infill False
19 Perimeter > Infill > Loops False
20 Perimeter > Loops > Infill True
21 Line True
22 Grid Circular False
23 Grid Hexagonal False
24 Grid Rectangular False
25 Diaphragm at every ...th Layer: 100
26 Diaphragm Thickness (layers): 0
27 Grid Circle Separation over Perimeter Width (ratio): 0.2
28 Grid Extra Overlap (ratio): 0.1
29 Grid Junction Separation Band Height (layers): 10
30 Grid Junction Separation over Octogon Radius At End (ratio): 0.0
31 Grid Junction Separation over Octogon Radius At Middle (ratio): 0.0
32 Infill Begin Rotation (degrees): 45.0
33 Infill Begin Rotation Repeat (layers): 1
34 Infill Odd Layer Extra Rotation (degrees): 90.0

View File

@ -0,0 +1,6 @@
Format is tab separated home settings.
_Name Value
WindowPosition 700+0
Open File for Home
Activate Home ... Not needed True
Name of Homing File: homing.gcode
1 Format is tab separated home settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Home
5 Activate Home ... Not needed True
6 Name of Homing File: homing.gcode

View File

@ -0,0 +1,8 @@
Format is tab separated inset settings.
_Name Value
WindowPosition 700+0
Open File for Inset
Bridge Width Multiplier (ratio): 1.0
Prefer Loops False
Prefer Perimeter True
Overlap Removal(Scaler): 1.0
1 Format is tab separated inset settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Inset
5 Bridge Width Multiplier (ratio): 1.0
6 Prefer Loops False
7 Prefer Perimeter True
8 Overlap Removal(Scaler): 1.0

View File

@ -0,0 +1,7 @@
Format is tab separated interpret settings.
_Name Value
WindowPosition 700+0
Open File for Interpret
Activate Interpret False
Print Interpretion False
Text Program: webbrowser
1 Format is tab separated interpret settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Interpret
5 Activate Interpret False
6 Print Interpretion False
7 Text Program: webbrowser

View File

@ -0,0 +1,6 @@
Format is tab separated jitter settings.
_Name Value
WindowPosition 700+0
Open File for Jitter
Activate Jitter to have your perimeter and loop endpoints scattered False
Jitter Over Perimeter Width (ratio): 2.0
1 Format is tab separated jitter settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Jitter
5 Activate Jitter to have your perimeter and loop endpoints scattered False
6 Jitter Over Perimeter Width (ratio): 2.0

View File

@ -0,0 +1,8 @@
Format is tab separated lash settings.
_Name Value
WindowPosition 700+0
Open File for Lash
Activate Lash if you have backlash in your axes.
But its better to fix the mechanical problem! False
X Backlash (mm): 0.0
Y Backlash (mm): 0.0
1 Format is tab separated lash settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Lash
5 Activate Lash if you have backlash in your axes.
6 But its better to fix the mechanical problem! False
7 X Backlash (mm): 0.0
8 Y Backlash (mm): 0.0

View File

@ -0,0 +1,7 @@
Format is tab separated limit settings.
_Name Value
WindowPosition 700+0
Open File for Limit
Activate Limit if your Firmware is unable to Limiting your Z-Speed. False
Maximum Initial Feed Rate (mm/s): 5.0
Maximum Z Feed Rate (mm/s): 5.0
1 Format is tab separated limit settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Limit
5 Activate Limit if your Firmware is unable to Limiting your Z-Speed. False
6 Maximum Initial Feed Rate (mm/s): 5.0
7 Maximum Z Feed Rate (mm/s): 5.0

View File

@ -0,0 +1,10 @@
Format is tab separated multiply settings.
_Name Value
WindowPosition 700+0
Open File for Multiply
Activate Multiply: True
Center X (mm): 100.0
Center Y (mm): 100.0
Number of Columns (integer): 1
Number of Rows (integer): 1
Separation over Perimeter Width (ratio): 15.0
1 Format is tab separated multiply settings.
2 _Name Value
3 WindowPosition 700+0
4 Open File for Multiply
5 Activate Multiply: True
6 Center X (mm): 100.0
7 Center Y (mm): 100.0
8 Number of Columns (integer): 1
9 Number of Rows (integer): 1
10 Separation over Perimeter Width (ratio): 15.0

View File

@ -0,0 +1,5 @@
Format is tab separated polyfile settings.
_Name Value
WindowPosition 700+0
Execute All Unmodified Files in a Directory False
Execute File True
1 Format is tab separated polyfile settings.
2 _Name Value
3 WindowPosition 700+0
4 Execute All Unmodified Files in a Directory False
5 Execute File True

View File

@ -0,0 +1,11 @@
_Name Value
Format is tab separated preface settings.
Home before Print False
Meta:
Name of End File: end.gmc
Name of Start File: start.gmc
Open File for Preface
Reset Extruder before Print True
Set Positioning to Absolute True
Set Units to Millimeters True
WindowPosition 700+0
1 _Name Value
2 Format is tab separated preface settings.
3 Home before Print False
4 Meta:
5 Name of End File: end.gmc
6 Name of Start File: start.gmc
7 Open File for Preface
8 Reset Extruder before Print True
9 Set Positioning to Absolute True
10 Set Units to Millimeters True
11 WindowPosition 700+0

Some files were not shown because too many files have changed in this diff Show More