Commit 10d6e51a authored by ajfoul's avatar ajfoul

Rename Move feedrate to Traversal. Update README.

parent a2392a2b
...@@ -12,6 +12,12 @@ This works form me, but YMMV. Very limited testing. Never leave your laser cutt ...@@ -12,6 +12,12 @@ This works form me, but YMMV. Very limited testing. Never leave your laser cutt
USE AT YOUR OWN RISK! USE AT YOUR OWN RISK!
10.17.14 - A little more testing reveals that G02 (CW ARC) and G03 (CCW ARC) moves are problematic. Not sure if it's the modifications in this fork, the original THLaser, LMN's Marlin, Inkscape, or some combination that is causing the issues.
Basically, you should consider this pre-alpha code. Examine the exported Gcode and do test runs on cardboard/paper before trying to cut on valuable stock.
Also: G28 at the end of the job doesn't seem to be working at the moment, at least not when running the gcode on my machine.
THLaser Inkscape Plugin THLaser Inkscape Plugin
----------------------- -----------------------
......
...@@ -39,7 +39,7 @@ This script is a fork of Gcodetools v1.2 by Nick Drobchenko. It is currently mai ...@@ -39,7 +39,7 @@ This script is a fork of Gcodetools v1.2 by Nick Drobchenko. It is currently mai
<param name="directory" type="string" _gui-text="Directory: "></param> <param name="directory" type="string" _gui-text="Directory: "></param>
<_param name="help" type="description">(blank is your desktop)</_param> <_param name="help" type="description">(blank is your desktop)</_param>
<param name="feed" type="int" min="0" max="1000" _gui-text="Cut Feedrate:">60</param> <param name="feed" type="int" min="0" max="1000" _gui-text="Cut Feedrate:">60</param>
<param name="Mfeed" type="int" min="0" max="1000" _gui-text="Move Feedrate:">300</param> <param name="Mfeed" type="int" min="0" max="1000" _gui-text="Traversal Feedrate:">300</param>
<param name="laser" type="int" min="0" max="100" _gui-text="Laser Intensity (0-100):">10</param> <param name="laser" type="int" min="0" max="100" _gui-text="Laser Intensity (0-100):">10</param>
<param name="homebefore" type="boolean" _gui-text="HOMEALL (G28) Before:">true</param> <param name="homebefore" type="boolean" _gui-text="HOMEALL (G28) Before:">true</param>
<param name="homeafter" type="boolean" _gui-text="HOMEALL (G28) After:">false</param> <param name="homeafter" type="boolean" _gui-text="HOMEALL (G28) After:">false</param>
......
...@@ -856,7 +856,6 @@ class Gcode_tools(inkex.Effect): ...@@ -856,7 +856,6 @@ class Gcode_tools(inkex.Effect):
if not self.options.generate_not_parametric_code: if not self.options.generate_not_parametric_code:
gcode += """ gcode += """
; Cut Feedrate %i ; Cut Feedrate %i
; Move Feedrate %i ; Move Feedrate %i
; Laser Intensity %i \n""" % (self.options.feed, self.options.Mfeed, self.options.laser) ; Laser Intensity %i \n""" % (self.options.feed, self.options.Mfeed, self.options.laser)
......
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