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
2173f1bc
Commit
2173f1bc
authored
Nov 16, 2011
by
Keegi
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #94 from kliment/experimental
Experimental
parents
440a5ca5
8f3df9c2
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
204 additions
and
71 deletions
+204
-71
blupload.py
blupload.py
+0
-41
pronsole.py
pronsole.py
+3
-3
pronterface.py
pronterface.py
+201
-27
No files found.
blupload.py
deleted
100644 → 0
View file @
440a5ca5
import
printcore
,
time
,
sys
,
os
def
dosify
(
name
):
return
os
.
path
.
split
(
name
)[
1
]
.
split
(
"."
)[
0
][:
8
]
+
".g"
def
blupload
(
printer
,
filename
,
path
):
printer
.
send_now
(
"M28 "
+
dosify
(
filename
))
printer
.
startprint
([
i
.
replace
(
"
\n
"
,
""
)
for
i
in
open
(
path
)])
try
:
sys
.
stdout
.
write
(
"Progress: 00.0
%
"
)
sys
.
stdout
.
flush
()
while
(
printer
.
printing
):
time
.
sleep
(
1
)
sys
.
stdout
.
write
(
"
\b\b\b\b
%02.1
f
%%
"
%
(
100
*
float
(
printer
.
queueindex
)
/
len
(
printer
.
mainqueue
),)
)
sys
.
stdout
.
flush
()
printer
.
send_now
(
"M29 "
+
dosify
(
filename
))
print
"Done uploading, disconnecting with a 5 second timeout in case the printer has something important to say."
printer
.
disconnect
()
time
.
sleep
(
5
)
print
"Upload complete. Goodbye!"
except
:
print
"Abort, disconnecting with a 5 second timeout in case the printer has something important to say."
printer
.
disconnect
()
if
__name__
==
'__main__'
:
#print "Usage: python blupload.py filename.gcode"
filename
=
"../prusamendel/sellsx_export.gcode"
tfilename
=
filename
if
len
(
sys
.
argv
)
>
1
:
filename
=
sys
.
argv
[
1
]
tfilename
=
os
.
path
.
basename
(
sys
.
argv
[
1
])
print
"Uploading: "
+
filename
,
" as "
+
dosify
(
tfilename
)
p
=
printcore
.
printcore
(
'/dev/ttyUSB0'
,
115200
)
p
.
loud
=
False
time
.
sleep
(
2
)
blupload
(
p
,
tfilename
,
filename
)
else
:
print
"Usage: python blupload.py filename.gcode"
pronsole.py
View file @
2173f1bc
...
...
@@ -147,9 +147,9 @@ class Settings:
self
.
port
=
""
self
.
baudrate
=
115200
self
.
temperature_pla
=
185
self
.
temperature_abs
=
230
.0
self
.
bedtemp_pla
=
60
.0
self
.
bedtemp_abs
=
110
.0
self
.
temperature_abs
=
230
self
.
bedtemp_pla
=
60
self
.
bedtemp_abs
=
110
self
.
xy_feedrate
=
3000
self
.
z_feedrate
=
200
self
.
e_feedrate
=
300
...
...
pronterface.py
View file @
2173f1bc
This diff is collapsed.
Click to expand it.
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