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
fac2a0bd
Commit
fac2a0bd
authored
May 31, 2011
by
kliment
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SD file listing, temperature reading and setting, temperature presets
parent
9dc2978f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
82 additions
and
2 deletions
+82
-2
pronsole.py
pronsole.py
+82
-2
No files found.
pronsole.py
View file @
fac2a0bd
...
@@ -266,6 +266,9 @@ class pronsole(cmd.Cmd):
...
@@ -266,6 +266,9 @@ class pronsole(cmd.Cmd):
self
.
sdfiles
+=
[
line
.
replace
(
"
\n
"
,
""
)
.
replace
(
"
\r
"
,
""
)
.
lower
()]
self
.
sdfiles
+=
[
line
.
replace
(
"
\n
"
,
""
)
.
replace
(
"
\r
"
,
""
)
.
lower
()]
def
do_ls
(
self
,
l
):
def
do_ls
(
self
,
l
):
if
not
self
.
p
.
online
:
print
"Printer is not online. Try connect to it first."
return
self
.
listing
=
0
self
.
listing
=
0
self
.
sdfiles
=
[]
self
.
sdfiles
=
[]
self
.
recvlisteners
+=
[
self
.
listfiles
]
self
.
recvlisteners
+=
[
self
.
listfiles
]
...
@@ -276,7 +279,27 @@ class pronsole(cmd.Cmd):
...
@@ -276,7 +279,27 @@ class pronsole(cmd.Cmd):
def
help_ls
(
self
):
def
help_ls
(
self
):
print
"lists files on the SD card"
print
"lists files on the SD card"
def
waitforsdresponse
(
self
,
l
):
if
"file.open failed"
in
l
:
print
"Opening file failed."
self
.
recvlisteners
.
remove
(
self
.
waitforsdresponse
)
return
if
"File opened"
in
l
:
print
l
if
"File selected"
in
l
:
print
"Starting print"
self
.
p
.
send_now
(
"M24"
)
#self.recvlisteners.remove(self.waitforsdresponse)
return
if
"Done printing file"
in
l
:
print
l
self
.
recvlisteners
.
remove
(
self
.
waitforsdresponse
)
return
def
do_sdprint
(
self
,
l
):
def
do_sdprint
(
self
,
l
):
if
not
self
.
p
.
online
:
print
"Printer is not online. Try connect to it first."
return
self
.
listing
=
0
self
.
listing
=
0
self
.
sdfiles
=
[]
self
.
sdfiles
=
[]
self
.
recvlisteners
+=
[
self
.
listfiles
]
self
.
recvlisteners
+=
[
self
.
listfiles
]
...
@@ -285,16 +308,18 @@ class pronsole(cmd.Cmd):
...
@@ -285,16 +308,18 @@ class pronsole(cmd.Cmd):
if
not
(
l
.
lower
()
in
self
.
sdfiles
):
if
not
(
l
.
lower
()
in
self
.
sdfiles
):
print
"File is not present on card. Upload it first"
print
"File is not present on card. Upload it first"
return
return
self
.
recvlisteners
+=
[
self
.
waitforsdresponse
]
self
.
p
.
send_now
(
"M23 "
+
l
.
lower
())
self
.
p
.
send_now
(
"M23 "
+
l
.
lower
())
self
.
p
.
send_now
(
"M24"
)
print
"Printing file: "
+
l
.
lower
()
+
" from SD card."
print
"Printing file: "
+
l
.
lower
()
+
" from SD card."
print
"Requesting SD print..."
time
.
sleep
(
1
)
def
help_sdprint
(
self
):
def
help_sdprint
(
self
):
print
"Print a file from the SD card. Tabcompletes with available file names."
print
"Print a file from the SD card. Tabcompletes with available file names."
print
"sdprint filename.g"
print
"sdprint filename.g"
def
complete_sdprint
(
self
,
text
,
line
,
begidx
,
endidx
):
def
complete_sdprint
(
self
,
text
,
line
,
begidx
,
endidx
):
if
self
.
sdfiles
==
[]:
if
self
.
sdfiles
==
[]
and
self
.
p
.
online
:
self
.
listing
=
0
self
.
listing
=
0
self
.
recvlisteners
+=
[
self
.
listfiles
]
self
.
recvlisteners
+=
[
self
.
listfiles
]
self
.
p
.
send_now
(
"M20"
)
self
.
p
.
send_now
(
"M20"
)
...
@@ -337,5 +362,60 @@ class pronsole(cmd.Cmd):
...
@@ -337,5 +362,60 @@ class pronsole(cmd.Cmd):
def
help_help
(
self
):
def
help_help
(
self
):
self
.
do_help
(
""
)
self
.
do_help
(
""
)
def
tempcb
(
self
,
l
):
if
"ok T:"
in
l
:
print
l
.
replace
(
"
\r
"
,
""
)
.
replace
(
"T"
,
"Hotend"
)
.
replace
(
"B"
,
"Bed"
)
.
replace
(
"
\n
"
,
""
)
.
replace
(
"ok "
,
""
)
self
.
recvlisteners
.
remove
(
self
.
tempcb
)
def
do_gettemp
(
self
,
l
):
if
self
.
p
.
online
:
self
.
recvlisteners
+=
[
self
.
tempcb
]
self
.
p
.
send_now
(
"M105"
)
def
help_gettemp
(
self
):
print
"Read the extruder and bed temperature."
def
do_settemp
(
self
,
l
):
try
:
l
=
l
.
lower
()
.
replace
(
","
,
"."
)
.
replace
(
"abs"
,
"230"
)
.
replace
(
"pla"
,
"210"
)
.
replace
(
"off"
,
"0"
)
f
=
float
(
l
)
if
f
>=
0
:
if
self
.
p
.
online
:
self
.
p
.
send_now
(
"M104 S"
+
l
)
print
"Setting hotend temperature to "
,
f
,
" degrees Celsius."
else
:
print
"Printer is not online."
else
:
print
"You cannot set negative temperatures. To turn the hotend off entirely, set its temperature to 0."
except
:
print
"You must enter a temperature."
def
help_settemp
(
self
):
print
"Sets the hotend temperature to the value entered."
print
"Enter either a temperature in celsius or one of the following keywords"
print
"abs (230), pla (210), off (0)"
def
do_bedtemp
(
self
,
l
):
try
:
l
=
l
.
lower
()
.
replace
(
","
,
"."
)
.
replace
(
"abs"
,
"110"
)
.
replace
(
"pla"
,
"65"
)
.
replace
(
"off"
,
"0"
)
f
=
float
(
l
)
if
f
>=
0
:
if
self
.
p
.
online
:
self
.
p
.
send_now
(
"M140 S"
+
l
)
print
"Setting bed temperature to "
,
f
,
" degrees Celsius."
else
:
print
"Printer is not online."
else
:
print
"You cannot set negative temperatures. To turn the bed off entirely, set its temperature to 0."
except
:
print
"You must enter a temperature."
def
help_bedtemp
(
self
):
print
"Sets the bed temperature to the value entered."
print
"Enter either a temperature in celsius or one of the following keywords"
print
"abs (110), pla (65), off (0)"
interp
=
pronsole
()
interp
=
pronsole
()
interp
.
cmdloop
()
interp
.
cmdloop
()
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