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