ChrisWag91 / Inkscape-Lasertools-Plugin

A simple plugin to convert inkscape vector graphics to Gcode for DIY laser engravers
GNU General Public License v3.0
38 stars 27 forks source link

Dwell GCODE commands out of order? #31

Open BCChad opened 2 years ago

BCChad commented 2 years ago

Thanks for previous help. Now, please see the photograph. The infill for the heart shape is not desirable. I watched my laser turn off before it stopped moving, thus creating the gap in the infill. I had 50ms of delay (dwell), hoping it would finish the movement before turning off, but it did not work that way. I then tried speeding up the infill speed, hoping it would finish the stroke before the laser turned off, but it actually got worse. Please look at the following sample GCODE as created by your extension. S0 G04 P55.0 G00 X0.51 Y30.87 F500.0 ; laser OFF, moves to next position G04 P50.0 ; Dwell, waits to arrive at position (this seems ok) S2100 ; power turns ON G01 Y33.43 F600.0 ; stroke begins S0 ; power is turned OFF G04 P55.0 ; then the dwell --- Shouldn't this come before the S0, so the stroke finishes before turning off? G00 X0.71 Y36.27 F500.0

20220213_111440