Skip to content

Commit

Permalink
Merge pull request kliment#547 from jmil/master
Browse files Browse the repository at this point in the history
Lasercutting: Relative moves with the jog dial should move with G0 instead of G1
  • Loading branch information
iXce committed Jun 6, 2014
2 parents 185b96f + 1939940 commit d4e3549
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion printrun/pronsole.py
Original file line number Diff line number Diff line change
Expand Up @@ -1445,7 +1445,7 @@ def do_move(self, l):
except:
pass
self.p.send_now("G91")
self.p.send_now("G1 " + axis + str(l[1]) + " F" + str(feed))
self.p.send_now("G0 " + axis + str(l[1]) + " F" + str(feed))
self.p.send_now("G90")

def help_move(self):
Expand Down

0 comments on commit d4e3549

Please sign in to comment.