SpecializedWeldRobotProp.cs
1.24 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
namespace HHECS.DAQShared.Common.Enums
{
public enum SpecializedWeldRobotProp
{
/// <summary>
/// 设备运行模式
/// </summary>
/// <remarks>
/// 0: 手动模式(部分设备只有手动模式)<br/>
/// 1: 半自动<br/>
/// 2: 自动<br/>
/// 3: 调试<br/>
/// 4: 维修<br/>
/// </remarks>
iRunningMode,
/// <summary>
/// 设备运行状态
/// </summary>
/// <remarks>
/// 0: 待机<br/>
/// 1: 运行<br/>
/// 2: 暂停<br/>
/// </remarks>
iState,
/// <summary>
/// 设备总故障
/// </summary>
/// <remarks>
/// 0: 无故障<br/>
/// 1: 有故障<br/>
/// </remarks>
iError,
/// <summary>
/// Tig焊接状态
/// </summary>
/// <remarks>
/// 0: 待机<br/>
/// 1: 提前送气<br/>
/// 2: 起弧过程<br/>
/// 3: 预熔过程<br/>
/// 4: 焊接过程<br/>
/// 5: 衰减过程<br/>
/// 6: 滞后送气<br/>
/// 7: 焊后抬升<br/>
/// 8: 焊后返回<br/>
/// </remarks>
iTigWeldState,
}
}