Config_XRay.cs
4.1 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
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 Config_XRay : DeviceConfig
{
public Config_XRay()
: base()
{
}
public Config_XRay(int id, string type, string filepath)
: base(id, type, filepath)
{
}
public override List<ConfigMoveAxis> moveAxisList { get; set; }
/// <summary>
/// AXIS,,入口皮带线,Line_Entry_Axis,0,HC,,500,1000,1000,100,200,1000,10,100,0,0
/// </summary>
[ConfigProAttribute("Line_Entry_Axis")]
public ConfigMoveAxis Line_Entry_Axis { get; set; }
/// <summary>
/// AXIS,,中间皮带线,Line_In_Axis,1,HC,,1000,1000,1000,200,500,500,10,100,0,0
/// </summary>
[ConfigProAttribute("Line_In_Axis")]
public ConfigMoveAxis Line_In_Axis { get; set; }
/// <summary>
/// PRO,0,进入伺服相对运动量,Line_Entry_Relative,5555,,,1000,,,,,,,,,
/// </summary>
[ConfigProAttribute("Line_Entry_Relative")]
public int Line_Entry_Relative { get; set; }
/// <summary>
/// PRO,0,机内伺服相对运动量,Line_In_Relative,5555,,,1000,,,,,,,,,
/// </summary>
[ConfigProAttribute("Line_In_Relative")]
public int Line_In_Relative { get; set; }
/// <summary>
/// PRO,30,IO信号超时时间(秒),IOSingle_TimerOut,15,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("IOSingle_TimerOut")]
public int IOSingle_TimerOut { get; set; }
/// <summary>
/// PRO,30,气压检测超时,AirCheckSeconds,5,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("AirCheckSeconds")]
public int AirCheckSeconds { get; set; }
/// <summary>
/// PRO,30,右侧相机名称,CameraName,123123,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("CameraName")]
public string CameraName { get; set; }
/// <summary>
/// PRO,10,进入伺服相对运动量,Line_Entry_Relative,5555,,,1000,,,,,,,,,
/// </summary>
[ConfigProAttribute("Line_Entry_Relative_speed")]
public int Line_Entry_Relative_speed { get; set; }
/// <summary>
/// PRO,10,机内伺服相对运动量,Line_In_Relative,5555,,,1000,,,,,,,,,
/// </summary>
[ConfigProAttribute("Line_In_Relative_speed")]
public int Line_In_Relative_speed { get; set; }
/// <summary>
/// PRO,31,左侧7寸料盘模拟量基准,Tray7_L_ADIO_base,99,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Tray7_L_ADIO_base")]
public int Tray7_L_ADIO_base { get; set; }
/// <summary>
/// PRO,31,左侧13寸料盘模拟量基准,Tray13_L_ADIO_base,99,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Tray13_L_ADIO_base")]
public int Tray13_L_ADIO_base { get; set; }
/// <summary>
/// PRO,31,左侧15寸料盘模拟量基准,Tray15_L_ADIO_base,99,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Tray15_L_ADIO_base")]
public int Tray15_L_ADIO_base { get; set; }
/// <summary>
/// PRO,31,右侧7寸料盘模拟量基准,Tray7_R_ADIO_base,99,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Tray7_R_ADIO_base")]
public int Tray7_R_ADIO_base { get; set; }
/// <summary>
/// PRO,31,右侧13寸料盘模拟量基准,Tray13_R_ADIO_base,994,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Tray13_R_ADIO_base")]
public int Tray13_R_ADIO_base { get; set; }
/// <summary>
/// PRO,31,右侧15寸料盘模拟量基准,Tray15_R_ADIO_base,99,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Tray15_R_ADIO_base")]
public int Tray15_R_ADIO_base { get; set; }
/// <summary>
/// PRO,32,料盘高度模拟量转换,Tray_ADIO_Value,999,,,,,,,,,,,,
/// </summary>
[ConfigProAttribute("Tray_ADIO_Value")]
public int Tray_ADIO_Value { get; set; }
}
}