Skip to content

Commit

Permalink
Merge pull request #489 from MaslowCNC/Make-GC-send-B02-with-L1-R0-fo…
Browse files Browse the repository at this point in the history
…rmat

Make GC specify which axis to extend the chain for
  • Loading branch information
BarbourSmith authored Dec 1, 2017
2 parents 297d439 + db336f4 commit 680b426
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UIElements/measureOutChains.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def countingDownL(self, *args):
Clock.schedule_once(self.countingDownL, 1)
else:
self.leftChainBtn.text = ' Extend\nLeft Chain'
self.data.gcode_queue.put("B02 L ")
self.data.gcode_queue.put("B02 L1 R0 ")

'''
Right Chain
Expand All @@ -60,4 +60,4 @@ def countingDownR(self, *args):
Clock.schedule_once(self.countingDownR, 1)
else:
self.rightChainBtn.text = ' Extend\nRight Chain'
self.data.gcode_queue.put("B02 R ")
self.data.gcode_queue.put("B02 L0 R1 ")

0 comments on commit 680b426

Please sign in to comment.