forked from PerroTron/JauriaCNC
-
Notifications
You must be signed in to change notification settings - Fork 6
/
config.yml
259 lines (209 loc) · 5.74 KB
/
config.yml
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
{% include "menubar.yml" %}
qtdesigner:
ui_file: ( windows.mainwindow.kwargs.ui_file )
qss_file: ( application.kwargs.stylesheet )
vcp:
name: TurBoNC
version: v0.0.2
author: TurBoss
description: Just the basic functions I need to run linuxcnc
data_plugins:
status:
provider: qtpyvcp.plugins.status:Status
kwargs:
cycle_time: 30
clock:
provider: qtpyvcp.plugins.clock:Clock
tooltable:
provider: qtpyvcp.plugins.tool_table:ToolTable
kwargs:
columns: TXYZDR
persistent_data_manager:
provider: qtpyvcp.plugins.persistent_data_manager:PersistentDataManager
kwargs:
# serialization method to use: json or pickle
serialization_method: pickle
# persistence_file: .vcp_data.json
gcode_properties:
provider: qtpyvcp.plugins.gcode_properties:GCodeProperties
# widgets:
# provider: qtpyvcp.plugins.widgets:Widgets
windows:
mainwindow:
provider: tnc.main:MainWindow
kwargs:
menu: ( default_menubar )
ui_file: {{ file.dir }}/ui/window.ui
application:
kwargs:
stylesheet: {{ file.dir }}/style.qss
dialogs:
zero_xy:
provider: tnc.dialogs.zero_xy:ZeroXY
kwargs:
ui_file: {{ file.dir }}/dialogs/zero_xy.ui
home_all:
provider: tnc.dialogs.home_all:HomeAll
kwargs:
ui_file: {{ file.dir }}/dialogs/home_all.ui
settings:
touch-probe.calibration-offset:
description: Probe trigger point offset.
default_value: 0.0
persistent: true
min_value: 0
max_value: 1
probe-parameters.probe-tool-number:
description: probe tool number.
default_value: 0.0
persistent: true
min_value: 0
max_value: 9999
probe-parameters.step-off-width:
description: probe step off width.
default_value: 0.0
persistent: true
min_value: 0
max_value: 1000
probe-parameters.probe-fast-fr:
description: probe fast feedrate.
default_value: 0.0
persistent: true
min_value: 0
max_value: 1000
probe-parameters.probe-slow-fr:
description: probe slow feedrate.
default_value: 0.0
persistent: true
min_value: 0
max_value: 1000
probe-parameters.max-xy-distance:
description: max x and y probe travel distance.
default_value: 0.0
persistent: true
min_value: 0
max_value: 100
probe-parameters.xy-clearance:
description: x and y clearance distance.
default_value: 0.0
persistent: true
min_value: 0
max_value: 1000
probe-parameters.max-z-distance:
description: max z probe travel distance.
default_value: 0.0
persistent: true
min_value: 0
max_value: 100
probe-parameters.z-clearance:
description: z clearance distance.
default_value: 0.0
persistent: true
min_value: 0
max_value: 1000
probe-parameters.extra-probe-depth:
description: extra probe depth.
default_value: 0.0
persistent: true
min_value: 0
max_value: 100
probe-parameters.edge-width:
description: edge width probing distance.
default_value: 0.0
persistent: true
min_value: 0
max_value: 1000
tool-change-position.x-tool-change-position:
description: x axis tool change position.
default_value: 0.0
persistent: true
min_value: -1000
max_value: 1000
tool-change-position.y-tool-change-position:
description: y axis tool change position.
persistent: true
min_value: -1000
max_value: 1000
tool-change-position.z-tool-change-position:
description: z axis tool change position.
default_value: 0.0
persistent: true
min_value: -1000
max_value: 1000
tool-setter-probe.fast-probe-fr:
description: tool probe fast feedrate.
default_value: 0.0
persistent: true
min_value: -1000
max_value: 1000
tool-setter-probe.slow-probe-fr:
description: tool probe slow feedrate.
default_value: 0.0
persistent: true
min_value: -1000
max_value: 1000
tool-setter-probe.z-max-travel:
description: maximumm z travel while probing before erroring out.
default_value: 0.0
persistent: true
min_value: -1000
max_value: 1000
tool-setter-probe.xy-max-travel:
description: maximumm xy travel while probing before erroring out.
default_value: 0.0
persistent: true
min_value: -1000
max_value: 1000
tool-setter-probe.retract-distance:
description: distance tool retracts after fast probe move.
default_value: 0.0
persistent: true
min_value: -1000
max_value: 1000
tool-setter-probe.spindle-nose-height:
description: distance from home to tool setter for the spindle nose.
default_value: 0.0
persistent: true
min_value: -1000
max_value: 1000
touch-probe.diameter-offset:
default_value: .123123
persistent: true
min_value: 0
max_value: 1
dro.display-units:
default_value: 0
options: [Auto, Inch, Metric]
dro.lathe-radius-mode:
default_value: 0
options: [Auto, Radius, Diameter]
dro.inch-format:
default_value: '%9.4f'
value_type: str
dro.millimeter-format:
default_value: '%9.3f'
value_type: str
dro.degree-format:
default_value: '%9.2f'
# VTK backplot view settings
backplot.show-grid:
default_value: false
backplot.show-program-bounds:
default_value: false
backplot.show-spindle:
default_value: false
backplot.show-tools:
default_value: false
backplot.show-machine-bounds:
default_value: false
backplot.show-machine-labels:
default_value: false
backplot.show-machine-ticks:
default_value: false
backplot.perspective-view:
default_value: True
backplot.view:
default_value: 0
options: ["X: Front View", "XZ: Lathe View", "XZ2: Lathe View", "Y: Front View", "Z: Top View", "Z2: Bottom View", "P: Isometric"]
backplot.multitool-colors:
default_value: True