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
567c1d23
Commit
567c1d23
authored
Oct 10, 2011
by
Kliment Yanev
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:kliment/Printrun
parents
48d99026
a16a1506
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
9 deletions
+42
-9
pronterface.py
pronterface.py
+42
-9
No files found.
pronterface.py
View file @
567c1d23
...
...
@@ -146,13 +146,13 @@ class PronterWindow(wx.Frame,pronsole.pronsole):
def
endcb
(
self
):
if
(
self
.
p
.
queueindex
==
0
):
print
"Print took "
+
str
(
int
(
time
.
time
()
-
self
.
starttime
)
/
60
)
+
" minutes "
+
str
(
int
(
time
.
time
()
-
self
.
starttime
)
%
60
)
+
" seconds"
print
"Print took "
+
str
(
int
(
time
.
time
()
-
self
.
starttime
)
/
60
)
+
" minutes "
+
str
(
int
(
time
.
time
()
-
self
.
starttime
)
%
60
)
+
" seconds
.
"
wx
.
CallAfter
(
self
.
pausebtn
.
Disable
)
wx
.
CallAfter
(
self
.
printbtn
.
SetLabel
,
_
(
"Print"
))
def
online
(
self
):
print
_
(
"Printer is now online"
)
print
_
(
"Printer is now online
.
"
)
wx
.
CallAfter
(
self
.
connectbtn
.
Disable
)
for
i
in
self
.
printerControls
:
wx
.
CallAfter
(
i
.
Enable
)
...
...
@@ -381,13 +381,17 @@ class PronterWindow(wx.Frame,pronsole.pronsole):
uts
=
self
.
uppertopsizer
=
wx
.
BoxSizer
(
wx
.
HORIZONTAL
)
uts
.
Add
(
wx
.
StaticText
(
self
.
panel
,
-
1
,
_
(
"Port:"
),
pos
=
(
0
,
5
)),
wx
.
TOP
|
wx
.
LEFT
,
5
)
scan
=
self
.
scanserial
()
portslist
=
list
(
scan
)
if
self
.
settings
.
port
!=
""
and
self
.
settings
.
port
not
in
portslist
:
portslist
+=
[
self
.
settings
.
port
]
self
.
serialport
=
wx
.
ComboBox
(
self
.
panel
,
-
1
,
choices
=
scan
,
choices
=
portslist
,
style
=
wx
.
CB_DROPDOWN
|
wx
.
CB_SORT
,
pos
=
(
50
,
0
))
try
:
self
.
serialport
.
SetValue
(
scan
[
0
])
if
self
.
settings
.
port
:
if
self
.
settings
.
port
in
scan
:
self
.
serialport
.
SetValue
(
self
.
settings
.
port
)
elif
len
(
portslist
)
>
0
:
self
.
serialport
.
SetValue
(
portslist
[
0
])
except
:
pass
uts
.
Add
(
self
.
serialport
)
...
...
@@ -487,23 +491,45 @@ class PronterWindow(wx.Frame,pronsole.pronsole):
lls
.
Add
(
wx
.
StaticText
(
self
.
panel
,
-
1
,
_
(
"Heater:"
),
pos
=
(
0
,
343
)),
pos
=
(
11
,
0
),
span
=
(
1
,
1
))
htemp_choices
=
[
self
.
temps
[
i
]
+
" ("
+
i
+
")"
for
i
in
sorted
(
self
.
temps
.
keys
(),
key
=
lambda
x
:
self
.
temps
[
x
])]
if
self
.
settings
.
last_temperature
not
in
map
(
float
,
self
.
temps
.
values
()):
htemp_choices
=
[
str
(
self
.
settings
.
last_temperature
)]
+
htemp_choices
self
.
htemp
=
wx
.
ComboBox
(
self
.
panel
,
-
1
,
choices
=
htemp_choices
,
style
=
wx
.
CB_DROPDOWN
,
size
=
(
90
,
25
),
pos
=
(
45
,
337
))
self
.
htemp
.
SetValue
(
"0"
)
lls
.
Add
(
self
.
htemp
,
pos
=
(
11
,
1
),
span
=
(
1
,
3
))
self
.
settbtn
=
wx
.
Button
(
self
.
panel
,
-
1
,
_
(
"Set"
),
size
=
(
38
,
-
1
),
pos
=
(
135
,
335
))
self
.
settbtn
.
Bind
(
wx
.
EVT_BUTTON
,
self
.
do_settemp
)
self
.
printerControls
.
append
(
self
.
settbtn
)
lls
.
Add
(
self
.
settbtn
,
pos
=
(
11
,
4
),
span
=
(
1
,
2
))
lls
.
Add
(
wx
.
StaticText
(
self
.
panel
,
-
1
,
_
(
"Bed:"
),
pos
=
(
0
,
343
)),
pos
=
(
12
,
0
),
span
=
(
1
,
1
))
btemp_choices
=
[
self
.
bedtemps
[
i
]
+
" ("
+
i
+
")"
for
i
in
sorted
(
self
.
bedtemps
.
keys
(),
key
=
lambda
x
:
self
.
bed
temps
[
x
])]
btemp_choices
=
[
self
.
bedtemps
[
i
]
+
" ("
+
i
+
")"
for
i
in
sorted
(
self
.
bedtemps
.
keys
(),
key
=
lambda
x
:
self
.
temps
[
x
])]
if
self
.
settings
.
last_bed_temperature
not
in
map
(
float
,
self
.
bedtemps
.
values
()):
btemp_choices
=
[
str
(
self
.
settings
.
last_bed_temperature
)]
+
btemp_choices
self
.
btemp
=
wx
.
ComboBox
(
self
.
panel
,
-
1
,
choices
=
btemp_choices
,
style
=
wx
.
CB_DROPDOWN
,
size
=
(
90
,
25
),
pos
=
(
45
,
367
))
self
.
btemp
.
SetValue
(
"0"
)
self
.
btemp
.
SetValue
(
str
(
self
.
settings
.
last_bed_temperature
))
self
.
htemp
.
SetValue
(
str
(
self
.
settings
.
last_temperature
))
## added for an error where only the bed would get (pla) or (abs).
#This ensures, if last temp is a default pla or abs, it will be marked so.
# if it is not, then a (user) remark is added. This denotes a manual entry
for
i
in
btemp_choices
:
if
i
.
split
()[
0
]
==
str
(
self
.
settings
.
last_bed_temperature
)
.
split
(
'.'
)[
0
]
or
i
.
split
()[
0
]
==
str
(
self
.
settings
.
last_bed_temperature
):
self
.
btemp
.
SetValue
(
i
)
for
i
in
htemp_choices
:
if
i
.
split
()[
0
]
==
str
(
self
.
settings
.
last_temperature
)
.
split
(
'.'
)[
0
]
or
i
.
split
()[
0
]
==
str
(
self
.
settings
.
last_temperature
)
:
self
.
htemp
.
SetValue
(
i
)
if
(
'('
not
in
self
.
btemp
.
Value
):
self
.
btemp
.
SetValue
(
self
.
btemp
.
Value
+
' (user)'
)
if
(
'('
not
in
self
.
htemp
.
Value
):
self
.
htemp
.
SetValue
(
self
.
htemp
.
Value
+
' (user)'
)
lls
.
Add
(
self
.
btemp
,
pos
=
(
12
,
1
),
span
=
(
1
,
3
))
self
.
setbbtn
=
wx
.
Button
(
self
.
panel
,
-
1
,
_
(
"Set"
),
size
=
(
38
,
-
1
),
pos
=
(
135
,
365
))
self
.
setbbtn
.
Bind
(
wx
.
EVT_BUTTON
,
self
.
do_bedtemp
)
...
...
@@ -1100,6 +1126,7 @@ class PronterWindow(wx.Frame,pronsole.pronsole):
pass
def
pause
(
self
,
event
):
print
_
(
"Paused."
)
if
not
self
.
paused
:
if
self
.
sdprinting
:
self
.
p
.
send_now
(
"M25"
)
...
...
@@ -1125,6 +1152,7 @@ class PronterWindow(wx.Frame,pronsole.pronsole):
pass
def
connect
(
self
,
event
):
print
_
(
"Connecting..."
)
port
=
None
try
:
port
=
self
.
scanserial
()[
0
]
...
...
@@ -1155,6 +1183,7 @@ class PronterWindow(wx.Frame,pronsole.pronsole):
def
disconnect
(
self
,
event
):
print
_
(
"Disconnected."
)
self
.
p
.
disconnect
()
self
.
statuscheck
=
False
...
...
@@ -1175,6 +1204,7 @@ class PronterWindow(wx.Frame,pronsole.pronsole):
def
reset
(
self
,
event
):
print
_
(
"Reset."
)
dlg
=
wx
.
MessageDialog
(
self
,
_
(
"Are you sure you want to reset the printer?"
),
_
(
"Reset?"
),
wx
.
YES
|
wx
.
NO
)
if
dlg
.
ShowModal
()
==
wx
.
ID_YES
:
self
.
p
.
reset
()
...
...
@@ -1231,6 +1261,8 @@ class macroed(wx.Dialog):
def
unindent
(
self
,
text
):
import
re
self
.
indent_chars
=
text
[:
len
(
text
)
-
len
(
text
.
lstrip
())]
if
len
(
self
.
indent_chars
)
==
0
:
self
.
indent_chars
=
" "
unindented
=
""
lines
=
re
.
split
(
r"(?:\r\n?|\n)"
,
text
)
#print lines
...
...
@@ -1249,7 +1281,8 @@ class macroed(wx.Dialog):
return
text
reindented
=
""
for
line
in
lines
:
reindented
+=
self
.
indent_chars
+
line
+
"
\n
"
if
line
.
strip
()
!=
""
:
reindented
+=
self
.
indent_chars
+
line
+
"
\n
"
return
reindented
class
options
(
wx
.
Dialog
):
...
...
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