-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththrly-config.toml
96 lines (73 loc) · 2.3 KB
/
thrly-config.toml
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
########################################################################################################################
# Custom Profile
########################################################################################################################
[gwrite.fast-plot]
unit = "mm"
document_start = """
G90 ; absolute coordinates
G21 ; mm units
G17 ; xy plane
G00 Z1 ; pen up"""
layer_start = "(Start Layer)\n"
line_start = "(Start Layer)\n"
segment_first = """(Start Segment)
G00 Z1 (pen up)
G00 X{x:.4f} Y{y:.4f} (travel)
G00 Z0(pen down)\n"""
segment = """G00 X{x:.4f} Y{y:.4f}\n"""
line_end = """(Line End)
G00 Z1 (pen up)"""
document_end = """(Document End)
G00 Z1 (pen up)
G00 X0.0 Y0.0
M2"""
invert_y = true
info= "FAST PLOT. All G00 movements. Gcode ready to print. File created succesfully."
########################################################################################################################
[gwrite.medium-plot]
unit = "mm"
document_start = """
G90 ; absolute coordinates
G21 ; mm units
G17 ; xy plane
G00 Z1 ; pen up"""
layer_start = "(Start Layer)\n"
line_start = "(Start Layer)\n"
segment_first = """(Start Segment)
G00 Z1 (pen up)
G01 X{x:.4f} Y{y:.4f} F5000 (travel at F-speed)
G00 Z0(pen down)\n"""
segment = """G01 X{x:.4f} Y{y:.4f} F5000\n"""
line_end = """(Line End)
G00 Z1 (pen up)"""
document_end = """(Document End)
G00 Z1 (pen up)
G00 X0.0 Y0.0
M2"""
invert_y = true
info= "MEDIUM PLOT. All G01 F5000 draw movements. Gcode ready to print. File created succesfully."
########################################################################################################################
[gwrite.slow-plot]
unit = "mm"
document_start = """
G90 ; absolute coordinates
G21 ; mm units
G17 ; xy plane
G00 Z1 ; pen up"""
layer_start = "(Start Layer)\n"
line_start = "(Start Layer)\n"
segment_first = """(Start Segment)
G00 Z1 (pen up)
G01 X{x:.4f} Y{y:.4f} F1000 (travel at F-speed)
G00 Z0(pen down)
G04 P200 (pause 200 ms)\n"""
segment = """G01 X{x:.4f} Y{y:.4f} F1000\n"""
line_end = """(Line End)
G04 P200 (pause 200 ms)
G00 Z1 (pen up)"""
document_end = """(Document End)
G00 Z1 (pen up)
G00 X0.0 Y0.0
M2"""
invert_y = true
info= "SLOW PLOT. All G01 F1000 draw movements. Gcode ready to print. File created succesfully."