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
adbd5613
Commit
adbd5613
authored
Jun 28, 2012
by
Andrew Dalgleish
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add optional wait timeout to printcore send, send_now
parent
81407829
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
2 deletions
+17
-2
printcore.py
printcore.py
+17
-2
No files found.
printcore.py
View file @
adbd5613
...
...
@@ -48,6 +48,7 @@ class printcore():
self
.
onlinecb
=
None
#impl ()
self
.
loud
=
False
#emit sent and received lines to terminal
self
.
greetings
=
[
'start'
,
'Grbl '
]
self
.
wait
=
0
# default wait period for send(), send_now()
if
port
is
not
None
and
baud
is
not
None
:
#print port, baud
self
.
connect
(
port
,
baud
)
...
...
@@ -193,7 +194,7 @@ class printcore():
self
.
printing
=
True
Thread
(
target
=
self
.
_print
)
.
start
()
def
send
(
self
,
command
):
def
send
(
self
,
command
,
wait
=
0
):
"""Adds a command to the checksummed main command queue if printing, or sends the command immediately if not printing
"""
...
...
@@ -202,11 +203,18 @@ class printcore():
else
:
while
not
self
.
clear
:
time
.
sleep
(
0.001
)
if
(
wait
==
0
and
self
.
wait
>
0
):
wait
=
self
.
wait
if
(
wait
>
0
)
self
.
clear
=
False
self
.
_send
(
command
,
self
.
lineno
,
True
)
self
.
lineno
+=
1
while
((
wait
>
0
)
and
not
self
.
clear
):
time
.
sleep
(
0.001
)
wait
-=
1
def
send_now
(
self
,
command
):
def
send_now
(
self
,
command
,
wait
=
0
):
"""Sends a command to the printer ahead of the command queue, without a checksum
"""
if
(
self
.
online
):
...
...
@@ -215,7 +223,14 @@ class printcore():
else
:
while
not
self
.
clear
:
time
.
sleep
(
0.001
)
if
(
wait
==
0
and
self
.
wait
>
0
):
wait
=
self
.
wait
if
(
wait
>
0
)
self
.
clear
=
False
self
.
_send
(
command
)
while
((
wait
>
0
)
and
not
self
.
clear
):
time
.
sleep
(
0.001
)
wait
-=
1
#callback for command sent
else
:
print
"Not connected to printer."
...
...
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