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
a1123637
Commit
a1123637
authored
Apr 30, 2013
by
D1plo1d
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding a weak emergency stop mechanism to stop prints.
parent
ec8f6287
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
3 deletions
+28
-3
pronserve.py
pronserve.py
+28
-3
No files found.
pronserve.py
View file @
a1123637
...
...
@@ -28,6 +28,7 @@ import mdns
import
uuid
import
re
import
traceback
import
argparse
from
operator
import
itemgetter
,
attrgetter
from
collections
import
deque
...
...
@@ -299,6 +300,12 @@ class Pronserve(pronsole.pronsole, EventEmitter):
def
do_stop_move
(
self
):
raise
"Continuous movement not supported"
def
do_estop
(
self
):
pronsole
.
pronsole
.
do_pause
(
self
,
""
)
# self.p.reset()
print
"Emergency Stop!"
self
.
fire
(
"estop"
)
def
do_construct_set
(
self
,
subCmd
,
**
kwargs
):
getattr
(
self
,
"do_set_
%
s"
%
subCmd
)(
**
kwargs
)
...
...
@@ -494,8 +501,23 @@ class PrintJobQueue(EventEmitter):
# Server Start Up
# -------------------------------------------------
#dry_run = True
dry_run
=
False
parser
=
argparse
.
ArgumentParser
(
description
=
'Runs a 3D printer server using the Construct Protocol'
)
parser
.
add_argument
(
'--dry-run'
,
default
=
False
,
action
=
'store_true'
,
help
=
'Does not connect to the 3D printer'
)
args
=
parser
.
parse_args
()
dry_run
=
args
.
dry_run
def
warn_if_dry_run
():
if
dry_run
:
for
i
in
range
(
0
,
7
):
sys
.
stdout
.
write
(
"
\x1B
[0;33m Dry Run
\x1B
[0m"
)
print
""
print
"Pronserve is starting..."
pronserve
=
Pronserve
(
dry_run
=
dry_run
)
...
...
@@ -512,8 +534,11 @@ if __name__ == "__main__":
+---+
\x1B
[0;32mPronserve: Your printer just got a whole lot better.
\x1B
[0m
|
\u2713
| Ready to print.
+---+ More details at http://localhost:8888/"""
)
warn_if_dry_run
()
sys
.
stdout
.
write
(
welcome
)
print
"
\n\n
"
+
"-"
*
80
+
"
\n
"
print
"
\n
"
warn_if_dry_run
()
print
"-"
*
80
+
"
\n
"
try
:
pronserve
.
ioloop
.
start
()
...
...
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