using System.ComponentModel; namespace Lebai.SDK.Dtos { public enum RobotStatus { /// /// 已断开连接 /// [Description("已断开连接")] DISCONNECTED = 0, /// /// 急停停止状态 /// [Description("急停停止状态")] ESTOP = 1, /// /// 启动中 /// [Description("启动中")] BOOTING = 2, /// /// 电源关闭 /// [Description("电源关闭")] ROBOT_OFF = 3, /// /// 电源开启 /// [Description("电源开启")] ROBOT_ON = 4, /// /// 空闲中 /// [Description("空闲中")] IDLE = 5, /// /// 暂停中 /// [Description("暂停中")] PAUSED = 6, /// /// 机器人运动运行中 /// [Description("机器人运动运行中")] RUNNING = 7, /// /// 更新固件中 /// [Description("更新固件中")] UPDATING = 8, /// /// 启动中 /// [Description("启动中")] STARTING = 9, /// /// 停止中 /// [Description("停止中")] STOPPING = 10, /// /// 示教中 /// [Description("示教中")] TEACHING = 11, /// /// 普通停止 /// [Description("普通停止")] STOP = 12, } }