Add inkscape template. Add gcode header and footer. Add text file containing regex for modifying gcode.

This commit is contained in:
Adam Bissen 2022-03-24 17:27:55 -05:00
parent a12fb34d3d
commit e3f60306cc
4 changed files with 1798 additions and 0 deletions

1783
Tools/Template.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 42 KiB

3
Tools/footer Normal file
View File

@ -0,0 +1,3 @@
M280 P0 S100
G0 X.000 Y.000

5
Tools/header Normal file
View File

@ -0,0 +1,5 @@
G21 (programming in millimeters, mm)
G90 (programming in absolute positioning)
M280 P0 S100
G28 X Y (auto homing)
G1 F1500 (set speed)

7
Tools/regex.txt Normal file
View File

@ -0,0 +1,7 @@
Find all Z coordinates and replace with nothing
([ ][Z]([^ |\n])*)
Delete blank G00 commands replace with \n
(\n[G][0][0]\n)
\n