Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
Printrun
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
machinery
Printrun
Commits
569ac495
Commit
569ac495
authored
Aug 07, 2013
by
Guillaume Seguin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #420 from eldir/master
Changed extrusion length to hidden setting
parents
72f35d9c
6db8d4d9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
4 deletions
+15
-4
gui.py
printrun/gui.py
+3
-1
pronsole.py
pronsole.py
+4
-3
pronterface.py
pronterface.py
+8
-0
No files found.
printrun/gui.py
View file @
569ac495
...
...
@@ -170,9 +170,11 @@ def add_extra_controls(self, root, parentpanel, extra_buttons = None):
esettingspanel
=
root
.
newPanel
(
parentpanel
)
esettingssizer
=
wx
.
BoxSizer
(
wx
.
HORIZONTAL
)
root
.
edist
=
wx
.
SpinCtrl
(
esettingspanel
,
-
1
,
str
(
root
.
settings
.
extrusion_default
),
min
=
0
,
max
=
1000
,
size
=
(
70
,
-
1
))
root
.
edist
=
wx
.
SpinCtrl
(
esettingspanel
,
-
1
,
str
(
root
.
settings
.
last_extrusion
),
min
=
0
,
max
=
1000
,
size
=
(
70
,
-
1
))
root
.
edist
.
SetBackgroundColour
((
225
,
200
,
200
))
root
.
edist
.
SetForegroundColour
(
"black"
)
root
.
edist
.
Bind
(
wx
.
EVT_SPINCTRL
,
root
.
setfeeds
)
root
.
edist
.
Bind
(
wx
.
EVT_TEXT
,
root
.
setfeeds
)
esettingssizer
.
Add
(
root
.
edist
,
flag
=
wx
.
ALIGN_CENTER
|
wx
.
RIGHT
,
border
=
5
)
esettingssizer
.
Add
(
wx
.
StaticText
(
esettingspanel
,
-
1
,
_
(
"mm @"
)),
flag
=
wx
.
ALIGN_CENTER
|
wx
.
RIGHT
,
border
=
5
)
root
.
edist
.
SetToolTip
(
wx
.
ToolTip
(
"Amount to Extrude or Retract (mm)"
))
...
...
pronsole.py
View file @
569ac495
...
...
@@ -244,7 +244,6 @@ class Settings(object):
self
.
_add
(
SpinSetting
(
"xy_feedrate"
,
3000
,
0
,
50000
,
_
(
"X && Y manual feedrate"
),
_
(
"Feedrate for Control Panel Moves in X and Y (mm/min)"
),
"Printer"
))
self
.
_add
(
SpinSetting
(
"z_feedrate"
,
200
,
0
,
50000
,
_
(
"Z manual feedrate"
),
_
(
"Feedrate for Control Panel Moves in Z (mm/min)"
),
"Printer"
))
self
.
_add
(
SpinSetting
(
"e_feedrate"
,
100
,
0
,
1000
,
_
(
"E manual feedrate"
),
_
(
"Feedrate for Control Panel Moves in Extrusions (mm/min)"
),
"Printer"
))
self
.
_add
(
SpinSetting
(
"extrusion_default"
,
5
,
0
,
1000
,
_
(
"Extrusion length"
),
_
(
"Extrusion/REtraction (mm)"
),
"Printer"
))
self
.
_add
(
StringSetting
(
"slicecommand"
,
"python skeinforge/skeinforge_application/skeinforge_utilities/skeinforge_craft.py $s"
,
_
(
"Slice command"
),
_
(
"Slice command"
),
"External"
))
self
.
_add
(
StringSetting
(
"sliceoptscommand"
,
"python skeinforge/skeinforge_application/skeinforge.py"
,
_
(
"Slicer options command"
),
_
(
"Slice settings command"
),
"External"
))
self
.
_add
(
StringSetting
(
"final_command"
,
""
,
_
(
"Final command"
),
_
(
"Executable to run when the print is finished"
),
"External"
))
...
...
@@ -264,6 +263,8 @@ class Settings(object):
self
.
_add
(
HiddenSetting
(
"project_prelift_gcode"
,
""
))
self
.
_add
(
HiddenSetting
(
"project_postlift_gcode"
,
""
))
self
.
_add
(
HiddenSetting
(
"pause_between_prints"
,
True
))
self
.
_add
(
HiddenSetting
(
"default_extrusion"
,
5.0
))
self
.
_add
(
HiddenSetting
(
"last_extrusion"
,
5.0
))
_settings
=
[]
...
...
@@ -1236,7 +1237,7 @@ class pronsole(cmd.Cmd):
return
[]
def
do_extrude
(
self
,
l
,
override
=
None
,
overridefeed
=
300
):
length
=
5
# default extrusion length
length
=
self
.
settings
.
default_extrusion
# default extrusion length
feed
=
self
.
settings
.
e_feedrate
# default speed
if
not
self
.
p
.
online
:
self
.
logError
(
"Printer is not online. Unable to extrude."
)
...
...
@@ -1276,7 +1277,7 @@ class pronsole(cmd.Cmd):
self
.
log
(
_
(
"extrude 10 210 - extrudes 10mm of filament at 210mm/min (3.5mm/s)"
))
def
do_reverse
(
self
,
l
):
length
=
5
# default extrusion length
length
=
self
.
settings
.
default_extrusion
# default extrusion length
feed
=
self
.
settings
.
e_feedrate
# default speed
if
not
self
.
p
.
online
:
self
.
logError
(
_
(
"Printer is not online. Unable to reverse."
))
...
...
pronterface.py
View file @
569ac495
...
...
@@ -212,6 +212,8 @@ class PronterWindow(MainWindow, pronsole.pronsole):
self
.
settings
.
_add
(
HiddenSetting
(
"last_bed_temperature"
,
0.0
))
self
.
settings
.
_add
(
HiddenSetting
(
"last_file_path"
,
""
))
self
.
settings
.
_add
(
HiddenSetting
(
"last_temperature"
,
0.0
))
self
.
settings
.
_add
(
HiddenSetting
(
"last_extrusion"
,
5.0
))
self
.
settings
.
_add
(
HiddenSetting
(
"default_extrusion"
,
5.0
))
self
.
settings
.
_add
(
FloatSpinSetting
(
"preview_extrusion_width"
,
0.5
,
0
,
10
,
_
(
"Preview extrusion width"
),
_
(
"Width of Extrusion in Preview"
),
"UI"
),
self
.
update_gviz_params
)
self
.
settings
.
_add
(
SpinSetting
(
"preview_grid_step1"
,
10.
,
0
,
200
,
_
(
"Fine grid spacing"
),
_
(
"Fine Grid Spacing"
),
"UI"
),
self
.
update_gviz_params
)
self
.
settings
.
_add
(
SpinSetting
(
"preview_grid_step2"
,
50.
,
0
,
200
,
_
(
"Coarse grid spacing"
),
_
(
"Coarse Grid Spacing"
),
"UI"
),
self
.
update_gviz_params
)
...
...
@@ -902,6 +904,10 @@ class PronterWindow(MainWindow, pronsole.pronsole):
self
.
settings
.
_set
(
"xy_feedrate"
,
self
.
xyfeedc
.
GetValue
())
except
:
pass
try
:
self
.
settings
.
_set
(
"last_extrusion"
,
self
.
edist
.
GetValue
())
except
:
pass
def
cbuttons_reload
(
self
):
allcbs
=
getattr
(
self
,
"custombuttonbuttons"
,
[])
...
...
@@ -1275,6 +1281,8 @@ class PronterWindow(MainWindow, pronsole.pronsole):
self
.
save_in_rc
(
"set xy_feedrate"
,
"set xy_feedrate
%
d"
%
self
.
settings
.
xy_feedrate
)
self
.
save_in_rc
(
"set z_feedrate"
,
"set z_feedrate
%
d"
%
self
.
settings
.
z_feedrate
)
self
.
save_in_rc
(
"set e_feedrate"
,
"set e_feedrate
%
d"
%
self
.
settings
.
e_feedrate
)
if
self
.
settings
.
last_extrusion
!=
self
.
settings
.
default_extrusion
:
self
.
save_in_rc
(
"set last_extrusion"
,
"set last_extrusion
%
d"
%
self
.
settings
.
last_extrusion
)
if
self
.
excluder
:
self
.
excluder
.
close_window
()
wx
.
CallAfter
(
self
.
gwindow
.
Destroy
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment