namespace SHJX.Service.Model.Enums
{
public enum ArgType
{
///
/// 返回原点
///
[Description("返回原点")]
GoBack,
///
/// 移动
///
[Description("移动")]
Move,
///
/// 打开寄存器
///
[Description("打开寄存器")]
Open,
///
/// 关闭寄存器
///
[Description("关闭寄存器")]
Close,
///
/// 停止
///
[Description("停止")]
Stop,
///
/// 读取
///
[Description("读取")]
Read,
///
/// 加热读取
///
[Description("加热读取")]
HeatRead,
///
/// 速度
///
[Description("速度")]
Speed,
///
/// 加速度
///
[Description("加速度")]
AcSpeed,
///
/// 减速度
///
[Description("减速度")]
DeSpeed,
///
/// 反转
///
[Description("反转")]
Inversion,
///
/// 温度
///
[Description("温度")]
Temp,
///
/// 温湿度
///
[Description("温湿度")]
Humiture,
///
/// PID
///
[Description("PID")]
Pid,
///
/// 比例
///
[Description("比例")]
Ratio,
///
/// 积分
///
[Description("积分")]
Integral,
///
/// 微分
///
[Description("微分")]
Differential,
///
/// 积分默认值
///
[Description("积分默认值")]
IntegralDeafult
}
}