-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheggduino.inx
44 lines (40 loc) · 2.29 KB
/
eggduino.inx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<name>EggDuino</name>
<id>org.ekips.filter.eggduino</id>
<dependency type="file" location="inx">eggduino.py</dependency>
<param name="laser-on-command" type="string" gui-text="Laser ON Command:">M03 S255</param>
<param name="laser-off-command" type="string" gui-text="Laser OFF Command:">M03 S0</param>
<param name="travel-speed" type="int" min="0" max="10000" gui-text="Travel Speed (mm/min or in/min):">3000</param>
<param name="laser-speed" type="int" min="0" max="4000" gui-text="Laser Speed (mm/min or in/min):">100</param>
<param name="power-delay" type="int" min="0" max="5000" gui-text="Power-On Delay (ms):">500</param>
<param name="tab" type="notebook">
<page name="filetab" gui-text="File">
<param name="directory" type="string" gui-text="Directory:"></param>
<param name="filename" type="string" gui-text="Filename:">output.gcode</param>
</page>
<page name="serialtab" _gui-text="Serial">
<param name="serialPort" type="string" gui-text="Serial port:" gui-description="The port of your serial connection, on Windows something like 'COM1', on Linux something like: '/dev/ttyUSB0' (Default: COM1)">/dev/cu.wchusbserial410</param>
<param name="serialBaudRate" type="optiongroup" appearance="combo" gui-text="Serial baud rate:" gui-description="The Baud rate of your serial connection (Default: 9600)">
<item translatable="no" value="115200">115200</item>
<item translatable="no" value="9600">9600</item>
<item translatable="no" value="14400">14400</item>
<item translatable="no" value="19200">19200</item>
<item translatable="no" value="28800">28800</item>
<item translatable="no" value="38400">38400</item>
<item translatable="no" value="56000">56000</item>
<item translatable="no" value="57600">57600</item>
<item translatable="no" value="115200">115200</item>
</param>
</page>
</param>
<effect needs-live-preview="false" needs-document="no">
<object-type>all</object-type>
<effects-menu>
<submenu name="Export"/>
</effects-menu>
</effect>
<script>
<command location="inx" interpreter="python">eggduino.py</command>
</script>
</inkscape-extension>