SonarSonic / DrawingBotV3

DrawingBotV3 is a software for converting images into vector art
https://docs.drawingbotv3.com
GNU General Public License v3.0
331 stars 43 forks source link

GCode - Enhancements/Bugs #2

Closed SonarSonic closed 3 years ago

SonarSonic commented 3 years ago
reven commented 3 years ago

This would be much much appreciated! While playing around with the gcode I also noticed that it generates an x,y move and then goes to "pen down" height if it is set, as bellow:

(GCode generated by: DrawingBotV3 1.0.7)

(Time: 2021-03-22 at 16:33:13 PDT)

G21
G90
G28
G1 F8000
G1 X2.183 Y82.986
G1 Z10.000
G1 X3.472 Y82.738
G1 X3.720 Y82.540
...

It should raise the pen to the "pen up" value if set before attempting any move. like so:

...
G1 F8000
G1 Z15.000
G1 X2.183 Y82.986
G1 Z10.000
...

This is a must for printers/plotters where the resting state of the head is at 0,0,0.

reven commented 3 years ago

This is awesome! Thanks!! Can't wait to see this in release.