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
| using System;
| using System.Collections.Generic;
| using System.ComponentModel;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace WIDESEAWCS_Common.ShuttleCarEnum
| {
| /// <summary>
| /// 小车报警
| /// </summary>
| public enum ShuttleCarErr
| {
| /// <summary>
| /// 正常
| /// </summary>
| [Description("正常")]
| Normal,
| /// <summary>
| /// 前防撞保护
| /// </summary>
| [Description("前防撞保护")]
| FrontCollisionProtection,
| /// <summary>
| /// 后防撞保护
| /// </summary>
| [Description("后防撞保护")]
| RearCollisionProtection,
| /// <summary>
| /// 顶升超时
| /// </summary>
| [Description("顶升超时")]
| JackingTimeout,
| /// <summary>
| /// 行走超时
| /// </summary>
| [Description("行走超时")]
| WalkTimeout,
| /// <summary>
| /// 前减速激光故障
| /// </summary>
| [Description("前减速激光故障")]
| FrontDeceleratingLaserFault,
| /// <summary>
| /// 后减速激光故障
| /// </summary>
| [Description("后减速激光故障")]
| RearDeceleratingLaserFault,
| /// <summary>
| /// 前向上减速激光故障
| /// </summary>
| [Description("前向上减速激光故障")]
| FrontUpDeceleratingLaserFault,
| /// <summary>
| /// 后向上减速激光故障
| /// </summary>
| [Description("后向上减速激光故障")]
| RearUpDeceleratingLaserFault,
| /// <summary>
| /// 接近开关故障
| /// </summary>
| [Description("接近开关故障")]
| ProximitySwitchFault,
| /// <summary>
| /// 行走堵转报警
| /// </summary>
| [Description("行走堵转报警")]
| WalkingGridlockAlarm,
| /// <summary>
| /// A侧急停报警
| /// </summary>
| [Description("A侧急停报警")]
| AStopAlarm,
| /// <summary>
| /// B侧急停报警
| /// </summary>
| [Description("B侧急停报警")]
| BStopAlarm,
| /// <summary>
| /// 行走电机故障
| /// </summary>
| [Description("行走电机故障")]
| WalkMotorFault,
| /// <summary>
| /// 顶升电机故障
| /// </summary>
| [Description("顶升电机故障")]
| JackingMotorFault,
| /// <summary>
| /// 电量不足
| /// </summary>
| [Description("电量不足")]
| LowBattery,
| }
| }
|
|