We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
somewhere around line 635 in turnkeylaser.py
if(cutFeed < self.options.Mfeed): gcode += 'G0 X'+str(curve['x'])+' Y'+str(curve['y'])+' F'+str(self.options.Mfeed)+'\n' gcode += 'G0 X'+str(curve['x'])+' Y'+str(curve['y'])+' '+cutFeed+'\n'
basically compares str F200 < int 2200 I changed mine to
if(cutFeed != "F"+str(self.options.Mfeed)): gcode += 'G0 X'+str(curve['x'])+' Y'+str(curve['y'])+' F'+str(self.options.Mfeed)+'\n' gcode += 'G0 X'+str(curve['x'])+' Y'+str(curve['y'])+' '+cutFeed+'\n'
The text was updated successfully, but these errors were encountered:
I've changed it in my fork with: if(int("".join([x for x in list(cutFeed) if x.isdigit()])) < int(self.options.Mfeed)):
Sorry, something went wrong.
nextime,
Thanks that's a better Solution, I'm changing mine as well to;
if(int("".join([x for x in list(cutFeed) if x.isdigit()])) < int(self.options.Mfeed)):
No branches or pull requests
somewhere around line 635 in turnkeylaser.py
basically compares str F200 < int 2200
I changed mine to
The text was updated successfully, but these errors were encountered: