Commit 95f6d221 authored by kliment's avatar kliment

Fix z homing

parent 0a79e154
...@@ -831,7 +831,7 @@ class pronsole(cmd.Cmd): ...@@ -831,7 +831,7 @@ class pronsole(cmd.Cmd):
self.p.send_now("G92 Y0") self.p.send_now("G92 Y0")
if "z" in l.lower(): if "z" in l.lower():
self.do_move("Z -250") self.do_move("Z -250")
send_now("G92 Z0") self.p.send_now("G92 Z0")
self.do_move("Z 2") self.do_move("Z 2")
self.do_move("Z -3") self.do_move("Z -3")
self.p.send_now("G92 Z0") self.p.send_now("G92 Z0")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment