Commit d4e35492 authored by Guillaume Seguin's avatar Guillaume Seguin

Merge pull request #547 from jmil/master

Lasercutting: Relative moves with the jog dial should move with G0 instead of G1
parents 185b96fa 19399407
...@@ -1445,7 +1445,7 @@ class pronsole(cmd.Cmd): ...@@ -1445,7 +1445,7 @@ class pronsole(cmd.Cmd):
except: except:
pass pass
self.p.send_now("G91") 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") self.p.send_now("G90")
def help_move(self): def help_move(self):
......
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