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
3ef393e9
Commit
3ef393e9
authored
Mar 13, 2016
by
Rock Storm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add or fix help messages for main scripts
parent
3269eb2f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
113 additions
and
13 deletions
+113
-13
plater.py
plater.py
+25
-0
printcore.py
printcore.py
+41
-13
pronsole.py
pronsole.py
+23
-0
pronterface.py
pronterface.py
+24
-0
No files found.
plater.py
View file @
3ef393e9
...
...
@@ -17,10 +17,35 @@
import
sys
import
wx
import
getopt
from
printrun.stlplater
import
StlPlater
if
__name__
==
'__main__'
:
from
printrun.printcore
import
__version__
as
printcore_version
usage
=
"Usage:
\n
"
+
\
" plater [OPTION]
\n
"
+
\
" plater FILES
\n\n
"
+
\
"Options:
\n
"
+
\
" -V, --version
\t\t\t
Print program's version number and exit
\n
"
+
\
" -h, --help
\t\t\t
Print this help message and exit
\n
"
try
:
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
"hV"
,
[
"help"
,
"version"
])
except
getopt
.
GetoptError
,
err
:
print
str
(
err
)
print
usage
sys
.
exit
(
2
)
for
o
,
a
in
opts
:
if
o
in
(
'-V'
,
'--version'
):
print
"printrun "
+
printcore_version
sys
.
exit
(
0
)
elif
o
in
(
'-h'
,
'--help'
):
print
usage
sys
.
exit
(
0
)
app
=
wx
.
App
(
False
)
main
=
StlPlater
(
filenames
=
sys
.
argv
[
1
:])
main
.
Show
()
...
...
printcore.py
View file @
3ef393e9
...
...
@@ -18,6 +18,7 @@
import
time
import
getopt
import
sys
import
getopt
from
printrun.printcore
import
printcore
from
printrun.utils
import
setup_logging
...
...
@@ -28,32 +29,59 @@ if __name__ == '__main__':
baud
=
115200
loud
=
False
statusreport
=
False
from
printrun.printcore
import
__version__
as
printcore_version
usage
=
"Usage:
\n
"
+
\
" printcore [OPTIONS] PORT FILE
\n\n
"
+
\
"Options:
\n
"
+
\
" -b, --baud=BAUD_RATE"
+
\
"
\t\t
Set baud rate value. Default value is 115200
\n
"
+
\
" -s, --statusreport
\t\t
Print progress as percentage
\n
"
+
\
" -v, --verbose
\t\t\t
Print additional progress information
\n
"
+
\
" -V, --version
\t\t\t
Print program's version number and exit
\n
"
+
\
" -h, --help
\t\t\t
Print this help message and exit
\n
"
try
:
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
"
h,b:,v,s
"
,
[
"help"
,
"baud"
,
"verbose"
,
"statusreport
"
])
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
"
b:svVh
"
,
[
"baud="
,
"statusreport"
,
"verbose"
,
"version"
,
"help
"
])
except
getopt
.
GetoptError
,
err
:
print
str
(
err
)
print
usage
sys
.
exit
(
2
)
for
o
,
a
in
opts
:
if
o
in
(
'-h'
,
'--help'
):
# FIXME: Fix help
print
(
"Opts are: --help, -b --baud = baudrate, -v --verbose, "
"-s --statusreport"
)
sys
.
exit
(
1
)
if
o
in
(
'-b'
,
'--baud'
):
baud
=
int
(
a
)
if
o
in
(
'-v'
,
'--verbose'
):
print
usage
sys
.
exit
(
0
)
elif
o
in
(
'-V'
,
'--version'
):
print
"printrun "
+
printcore_version
sys
.
exit
(
0
)
elif
o
in
(
'-b'
,
'--baud'
):
try
:
baud
=
int
(
a
)
except
ValueError
:
print
"ValueError:"
print
"
\t
Invalid BAUD_RATE value '
%
s'"
%
a
print
"
\t
BAUD_RATE must be an integer
\n
"
# FIXME: This should output a more apropiate error message when
# not a good baud rate is passed as an argument
# i.e: when baud <= 1000 or > 225000
print
usage
sys
.
exit
(
2
)
elif
o
in
(
'-v'
,
'--verbose'
):
loud
=
True
elif
o
in
(
'-s'
,
'--statusreport'
):
statusreport
=
True
if
len
(
args
)
>
1
:
if
len
(
args
)
<=
1
:
print
"Error: Port or gcode file were not specified.
\n
"
print
usage
sys
.
exit
(
2
)
elif
len
(
args
)
>
1
:
port
=
args
[
-
2
]
filename
=
args
[
-
1
]
print
"Printing:
%
s on
%
s with baudrate
%
d"
%
(
filename
,
port
,
baud
)
else
:
print
"Usage: python [-h|-b|-v|-s] printcore.py /dev/tty[USB|ACM]x filename.gcode"
sys
.
exit
(
2
)
p
=
printcore
(
port
,
baud
)
p
.
loud
=
loud
time
.
sleep
(
2
)
...
...
pronsole.py
View file @
3ef393e9
...
...
@@ -19,9 +19,32 @@ import sys
import
traceback
import
logging
from
printrun.pronsole
import
pronsole
import
getopt
if
__name__
==
"__main__"
:
from
printrun.printcore
import
__version__
as
printcore_version
usage
=
"Usage:
\n
"
+
\
" pronsole [OPTION]
\n\n
"
+
\
"Options:
\n
"
+
\
" -V, --version
\t\t\t
Print program's version number and exit
\n
"
+
\
" -h, --help
\t\t\t
Print this help message and exit
\n
"
try
:
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
"hV"
,
[
"help"
,
"version"
])
except
getopt
.
GetoptError
,
err
:
print
str
(
err
)
print
usage
sys
.
exit
(
2
)
for
o
,
a
in
opts
:
if
o
in
(
'-V'
,
'--version'
):
print
"printrun "
+
printcore_version
sys
.
exit
(
0
)
elif
o
in
(
'-h'
,
'--help'
):
print
usage
sys
.
exit
(
0
)
interp
=
pronsole
()
interp
.
parse_cmdline
(
sys
.
argv
[
1
:])
try
:
...
...
pronterface.py
View file @
3ef393e9
...
...
@@ -16,6 +16,7 @@
# along with Printrun. If not, see <http://www.gnu.org/licenses/>.
import
sys
import
getopt
try
:
import
wx
# NOQA
...
...
@@ -32,6 +33,29 @@ not yet available for python3. You should try running with python2 instead.""")
from
printrun.pronterface
import
PronterApp
if
__name__
==
'__main__'
:
from
printrun.printcore
import
__version__
as
printcore_version
usage
=
"Usage:
\n
"
+
\
" pronterface [OPTION]
\n\n
"
+
\
"Options:
\n
"
+
\
" -V, --version
\t\t\t
Print program's version number and exit
\n
"
+
\
" -h, --help
\t\t\t
Print this help message and exit
\n
"
try
:
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
"hV"
,
[
"help"
,
"version"
])
except
getopt
.
GetoptError
,
err
:
print
str
(
err
)
print
usage
sys
.
exit
(
2
)
for
o
,
a
in
opts
:
if
o
in
(
'-V'
,
'--version'
):
print
"printrun "
+
printcore_version
sys
.
exit
(
0
)
elif
o
in
(
'-h'
,
'--help'
):
print
usage
sys
.
exit
(
0
)
app
=
PronterApp
(
False
)
try
:
app
.
MainLoop
()
...
...
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