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
dffa6202
Commit
dffa6202
authored
Jul 20, 2011
by
kliment
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use G28 for individual axis homing
parent
d483f84b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
24 deletions
+7
-24
pronsole.py
pronsole.py
+7
-24
No files found.
pronsole.py
View file @
dffa6202
...
@@ -995,27 +995,11 @@ class pronsole(cmd.Cmd):
...
@@ -995,27 +995,11 @@ class pronsole(cmd.Cmd):
print
"Printer is currently printing. Please pause the print before you issue manual commands."
print
"Printer is currently printing. Please pause the print before you issue manual commands."
return
return
if
"x"
in
l
.
lower
():
if
"x"
in
l
.
lower
():
self
.
do_move
(
"X -250"
)
self
.
p
.
send_now
(
"G28 X"
)
self
.
p
.
send_now
(
"G92 X0"
)
self
.
do_move
(
"X 5 200"
)
self
.
do_move
(
"X -10 200"
)
self
.
do_move
(
"X 0.1"
)
self
.
do_move
(
"X -0.1"
)
self
.
p
.
send_now
(
"G92 X0"
)
if
"y"
in
l
.
lower
():
if
"y"
in
l
.
lower
():
self
.
do_move
(
"Y -250"
)
self
.
p
.
send_now
(
"G28 Y"
)
self
.
p
.
send_now
(
"G92 Y0"
)
self
.
do_move
(
"Y 5 200"
)
self
.
do_move
(
"Y -10 200"
)
self
.
do_move
(
"Y 0.1"
)
self
.
do_move
(
"Y -0.1"
)
self
.
p
.
send_now
(
"G92 Y0"
)
if
"z"
in
l
.
lower
():
if
"z"
in
l
.
lower
():
self
.
do_move
(
"Z -250"
)
self
.
p
.
send_now
(
"G28 Z"
)
self
.
p
.
send_now
(
"G92 Z0"
)
self
.
do_move
(
"Z 2"
)
self
.
do_move
(
"Z -3"
)
self
.
p
.
send_now
(
"G92 Z0"
)
if
"e"
in
l
.
lower
():
if
"e"
in
l
.
lower
():
self
.
p
.
send_now
(
"G92 E0"
)
self
.
p
.
send_now
(
"G92 E0"
)
if
not
len
(
l
):
if
not
len
(
l
):
...
@@ -1024,12 +1008,11 @@ class pronsole(cmd.Cmd):
...
@@ -1024,12 +1008,11 @@ class pronsole(cmd.Cmd):
def
help_home
(
self
):
def
help_home
(
self
):
print
"Homes the printer"
print
"Homes the printer"
print
"home - homes all axes and zeroes the extruder(Using G28)"
print
"home - homes all axes and zeroes the extruder(Using G28
and G92
)"
print
"home xy - homes x and y axes (Using G
1 and G92
)"
print
"home xy - homes x and y axes (Using G
28
)"
print
"home z - homes z axis only (Using G
1 and G92
)"
print
"home z - homes z axis only (Using G
28
)"
print
"home e - set extruder position to zero (Using G92)"
print
"home e - set extruder position to zero (Using G92)"
print
"home xyz - homes all axes (Using G1 and G92)"
print
"home xyze - homes all axes and zeroes the extruder (Using G28 and G92)"
print
"home xyze - homes all axes and zeroes the extruder (Using G1 and G92)"
def
parse_cmdline
(
self
,
args
):
def
parse_cmdline
(
self
,
args
):
import
getopt
import
getopt
...
...
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