Robot_Config.cs
13.4 KB
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
using log4net;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace OnlineStore.LoadCSVLibrary
{
public class Robot_Config : DeviceConfig
{
public Robot_Config()
: base()
{
}
public Robot_Config(int id, string type, string filepath)
: base(id, type, filepath)
{
}
/// <summary>
/// AXIS,,取料机构旋转轴_SVD01,Take_Middle_Axis,0,HC,,500,1000,1000,100,200,1000,10,1000,0,0
/// </summary>
[ConfigProAttribute("Take_Middle_Axis")]
public ConfigMoveAxis Take_Middle_Axis { get; set; }
/// <summary>
/// AXIS,,取料机构上下轴_SVD02,Take_UpDown_Axis,1,HC,,1000,1000,1000,200,500,500,10,1000,0,0
/// </summary>
[ConfigProAttribute("Take_UpDown_Axis")]
public ConfigMoveAxis Take_UpDown_Axis { get; set; }
/// <summary>
/// AXIS,,左轨道提升轴_SVD04,Left_Batch_Axis,2,HC,,3000,1000,1000,200,1000,200,10,1000,0,0
/// </summary>
[ConfigProAttribute("Left_Batch_Axis")]
public ConfigMoveAxis Left_Batch_Axis { get; set; }
/// <summary>
/// AXIS,,右轨道提升轴_SVD05,Right_Batch_Axis,3,HC,,3000,1000,1000,200,1000,200,10,1000,0,0
/// </summary>
[ConfigProAttribute("Right_Batch_Axis")]
public ConfigMoveAxis Right_Batch_Axis { get; set; }
/// <summary>
/// AXIS,,贴标移栽机构X轴_SVD08,Label_X_Axis,4,HC,,100,700,700,50,250,500,10,1000,0,0
/// </summary>
[ConfigProAttribute("Label_X_Axis")]
public ConfigMoveAxis Label_X_Axis { get; set; }
/// <summary>
/// AXIS,,贴标移栽机构Y轴_SVD09,Label_Y_Axis,5,HC,,100,700,700,50,150,500,10,1000,0,0
/// </summary>
[ConfigProAttribute("Label_Y_Axis")]
public ConfigMoveAxis Label_Y_Axis { get; set; }
/// <summary>
/// AXIS,,贴标移栽机构Z轴_SVD10,Label_Z_Axis,6,HC,,100,800,800,50,150,500,10,1000,0,0
/// </summary>
[ConfigProAttribute("Label_Z_Axis")]
public ConfigMoveAxis Label_Z_Axis { get; set; }
/// <summary>
/// AXIS,,贴标移栽机构R轴_SVD11,Label_R_Axis,7,HC,,10,2000,2000,1,5,200,500,1000,0,0
/// </summary>
[ConfigProAttribute("Label_R_Axis")]
public ConfigMoveAxis Label_R_Axis { get; set; }
/// <summary>
/// PRO,0,IO信号超时时间(秒),IOSingle_TimerOut,15,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("IOSingle_TimerOut")]
public int IOSingle_TimerOut { get; set; }
/// <summary>
/// PRO,0,气压检测超时,AirCheckSeconds,5,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("AirCheckSeconds")]
public int AirCheckSeconds { get; set; }
/// <summary>
/// PRO,0,取料旋转轴待机点P1,Take_Middle_P1,1,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Take_Middle_P1")]
public int Take_Middle_P1 { get; set; }
/// <summary>
/// PRO,0,取料旋转轴右取料点P2,Take_Middle_P2,2,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Take_Middle_P2")]
public int Take_Middle_P2 { get; set; }
/// <summary>
/// PRO,0,取料旋转轴左取料点P3,Take_Middle_P3,3,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Take_Middle_P3")]
public int Take_Middle_P3 { get; set; }
/// <summary>
/// PRO,0,取料旋转轴NG放料点P5,Take_Middle_P5,4,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Take_Middle_P5")]
public int Take_Middle_P5 { get; set; }
/// <summary>
/// PRO,0,取料上下轴待机点P1,Take_UpDown_P1,6,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Take_UpDown_P1")]
public int Take_UpDown_P1 { get; set; }
/// <summary>
/// PRO,0,取料上下轴取料高点P2,Take_UpDown_P2,7,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Take_UpDown_P2")]
public int Take_UpDown_P2 { get; set; }
/// <summary>
/// PRO,0,取料上下轴取右料低点P3,Take_UpDown_P3,8,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Take_UpDown_P3")]
public int Take_UpDown_P3 { get; set; }
/// <summary>
/// PRO,0,取料上下轴取左料低点P4,Take_UpDown_P4,9,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Take_UpDown_P4")]
public int Take_UpDown_P4 { get; set; }
/// <summary>
/// PRO,0,取料上下轴NG放料点P5,Take_UpDown_P5,10,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Take_UpDown_P5")]
public int Take_UpDown_P5 { get; set; }
/// <summary>
/// PRO,0,右提升轴低点P1,Right_Batch_P1,12,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Right_Batch_P1")]
public int Right_Batch_P1 { get; set; }
/// <summary>
/// PRO,0,右提升轴高点P2,Right_Batch_P2,13,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Right_Batch_P2")]
public int Right_Batch_P2 { get; set; }
/// <summary>
/// PRO,0,左提升轴低点P1,Left_Batch_P1,14,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Left_Batch_P1")]
public int Left_Batch_P1 { get; set; }
/// <summary>
/// PRO,0,左提升轴高点P2,Left_Batch_P2,15,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Left_Batch_P2")]
public int Left_Batch_P2 { get; set; }
/// <summary>
/// PRO,0,贴标X轴待机点P1,Label_X_P1,17,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_X_P1")]
public int Label_X_P1 { get; set; }
/// <summary>
/// PRO,0,贴标X轴取标点P2,Label_X_P2,18,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_X_P2")]
public int Label_X_P2 { get; set; }
/// <summary>
/// PRO,0,贴标X轴贴标点P3,Label_X_P3,19,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_X_P3")]
public int Label_X_P3 { get; set; }
/// <summary>
/// PRO,0,贴标Y轴待机点P1,Label_Y_P1,21,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_Y_P1")]
public int Label_Y_P1 { get; set; }
/// <summary>
/// PRO,0,贴标Y轴取标点P2,Label_Y_P2,22,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_Y_P2")]
public int Label_Y_P2 { get; set; }
/// <summary>
/// PRO,0,贴标Y轴贴标点P3,Label_Y_P3,23,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_Y_P3")]
public int Label_Y_P3 { get; set; }
/// <summary>
/// PRO,0,贴标Z轴待机点P1,Label_Z_P1,25,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_Z_P1")]
public int Label_Z_P1 { get; set; }
/// <summary>
/// PRO,0,贴标Z轴取标点P2,Label_Z_P2,26,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_Z_P2")]
public int Label_Z_P2 { get; set; }
/// <summary>
/// PRO,0,贴标Z轴贴标点P3,Label_Z_P3,27,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_Z_P3")]
public int Label_Z_P3 { get; set; }
/// <summary>
/// PRO,0,贴标R轴待机点P1,Label_R_P1,29,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_R_P1")]
public int Label_R_P1 { get; set; }
/// <summary>
/// PRO,0,贴标R轴取标点P2,Label_R_P2,30,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_R_P2")]
public int Label_R_P2 { get; set; }
/// <summary>
/// PRO,0,贴标R轴360度脉冲,Label_R_P3,31,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_R_P3")]
public int Label_R_P3 { get; set; }
/// <summary>
/// PRO,10,取料旋转轴待机点P1,Take_Middle_P1,1,,,99,,,,,,,,,
/// </summary>
[ConfigProAttribute("Take_Middle_P1_speed")]
public int Take_Middle_P1_speed { get; set; }
/// <summary>
/// PRO,10,取料旋转轴右取料点P2,Take_Middle_P2,2,,,99,,,,,,,,,
/// </summary>
[ConfigProAttribute("Take_Middle_P2_speed")]
public int Take_Middle_P2_speed { get; set; }
/// <summary>
/// PRO,10,取料旋转轴左取料点P3,Take_Middle_P3,3,,,99,,,,,,,,,
/// </summary>
[ConfigProAttribute("Take_Middle_P3_speed")]
public int Take_Middle_P3_speed { get; set; }
/// <summary>
/// PRO,10,取料旋转轴NG放料点P5,Take_Middle_P5,4,,,99,,,,,,,,,
/// </summary>
[ConfigProAttribute("Take_Middle_P5_speed")]
public int Take_Middle_P5_speed { get; set; }
/// <summary>
/// PRO,11,取料上下轴待机点P1,Take_UpDown_P1,6,,,88,,,,,,,,,
/// </summary>
[ConfigProAttribute("Take_UpDown_P1_speed")]
public int Take_UpDown_P1_speed { get; set; }
/// <summary>
/// PRO,11,取料上下轴取料高点P2,Take_UpDown_P2,7,,,88,,,,,,,,,
/// </summary>
[ConfigProAttribute("Take_UpDown_P2_speed")]
public int Take_UpDown_P2_speed { get; set; }
/// <summary>
/// PRO,11,取料上下轴取右料低点P3,Take_UpDown_P3,8,,,88,,,,,,,,,
/// </summary>
[ConfigProAttribute("Take_UpDown_P3_speed")]
public int Take_UpDown_P3_speed { get; set; }
/// <summary>
/// PRO,11,取料上下轴取左料低点P4,Take_UpDown_P4,9,,,88,,,,,,,,,
/// </summary>
[ConfigProAttribute("Take_UpDown_P4_speed")]
public int Take_UpDown_P4_speed { get; set; }
/// <summary>
/// PRO,11,取料上下轴NG放料点P5,Take_UpDown_P5,10,,,88,,,,,,,,,
/// </summary>
[ConfigProAttribute("Take_UpDown_P5_speed")]
public int Take_UpDown_P5_speed { get; set; }
/// <summary>
/// PRO,12,右提升轴低点P1,Right_Batch_P1,12,,,66,,,,,,,,,
/// </summary>
[ConfigProAttribute("Right_Batch_P1_speed")]
public int Right_Batch_P1_speed { get; set; }
/// <summary>
/// PRO,12,右提升轴高点P2,Right_Batch_P2,13,,,66,,,,,,,,,
/// </summary>
[ConfigProAttribute("Right_Batch_P2_speed")]
public int Right_Batch_P2_speed { get; set; }
/// <summary>
/// PRO,12,左提升轴低点P1,Left_Batch_P1,14,,,66,,,,,,,,,
/// </summary>
[ConfigProAttribute("Left_Batch_P1_speed")]
public int Left_Batch_P1_speed { get; set; }
/// <summary>
/// PRO,12,左提升轴高点P2,Left_Batch_P2,15,,,66,,,,,,,,,
/// </summary>
[ConfigProAttribute("Left_Batch_P2_speed")]
public int Left_Batch_P2_speed { get; set; }
/// <summary>
/// PRO,13,贴标X轴待机点P1,Label_X_P1,17,,,77,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_X_P1_speed")]
public int Label_X_P1_speed { get; set; }
/// <summary>
/// PRO,13,贴标X轴取标点P2,Label_X_P2,18,,,77,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_X_P2_speed")]
public int Label_X_P2_speed { get; set; }
/// <summary>
/// PRO,13,贴标X轴贴标点P3,Label_X_P3,19,,,77,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_X_P3_speed")]
public int Label_X_P3_speed { get; set; }
/// <summary>
/// PRO,14,贴标Y轴待机点P1,Label_Y_P1,21,,,44,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_Y_P1_speed")]
public int Label_Y_P1_speed { get; set; }
/// <summary>
/// PRO,14,贴标Y轴取标点P2,Label_Y_P2,22,,,44,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_Y_P2_speed")]
public int Label_Y_P2_speed { get; set; }
/// <summary>
/// PRO,14,贴标Y轴贴标点P3,Label_Y_P3,23,,,44,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_Y_P3_speed")]
public int Label_Y_P3_speed { get; set; }
/// <summary>
/// PRO,15,贴标Z轴待机点P1,Label_Z_P1,25,,,44,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_Z_P1_speed")]
public int Label_Z_P1_speed { get; set; }
/// <summary>
/// PRO,15,贴标Z轴取标点P2,Label_Z_P2,26,,,44,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_Z_P2_speed")]
public int Label_Z_P2_speed { get; set; }
/// <summary>
/// PRO,15,贴标Z轴贴标点P3,Label_Z_P3,27,,,44,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_Z_P3_speed")]
public int Label_Z_P3_speed { get; set; }
/// <summary>
/// PRO,16,贴标R轴待机点P1,Label_R_P1,29,,,22,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_R_P1_speed")]
public int Label_R_P1_speed { get; set; }
/// <summary>
/// PRO,16,贴标R轴取标点P2,Label_R_P2,30,,,22,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_R_P2_speed")]
public int Label_R_P2_speed { get; set; }
/// <summary>
/// PRO,16,贴标R轴360度脉冲,Label_R_P3,31,,,22,,,,,,,,,
/// </summary>
[ConfigProAttribute("Label_R_P3_speed")]
public int Label_R_P3_speed { get; set; }
}
}