Skip to content

Commit

Permalink
Changed grbl feed rate output to mm/min.
Browse files Browse the repository at this point in the history
  • Loading branch information
mlampert authored and wwmayer committed Apr 30, 2018
1 parent 0dead11 commit 1a2868b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Path/PathScripts/post/grbl_post.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def parse(pathobj):
if param in c.Parameters:
if param == 'F':
if command not in RAPID_MOVES:
outstring.append(param + format(c.Parameters['F'], '.2f'))
outstring.append(param + format(c.Parameters['F'] * 60, '.2f'))
elif param == 'T':
outstring.append(param + str(c.Parameters['T']))
else:
Expand Down

0 comments on commit 1a2868b

Please sign in to comment.