RobotState.cs
493 字节
using System;
using System.Collections.Generic;
using System.Text;
namespace DeviceLib.Model.AGV
{
/// <summary>
/// 自定义机器人状态
/// </summary>
public enum RobotState
{
空闲,
/// <summary>
/// 待机点
/// </summary>
待机中,
/// <summary>
/// 充电中
/// </summary>
充电中,
/// <summary>
/// 执行任务中
/// </summary>
忙碌中
}
}