namespace SKMC.Api.Machine.Config
{
///
/// 设备参数
///
public enum MachineParamEnum
{
///
/// 机台组
/// 10
///
Machine,
///
/// 运控组(电机与IO)
/// 11
///
Motion,
///
/// 流程组
/// 12
///
Process,
///
/// 视觉组
/// 13
///
Vision,
///
/// 程序组
/// 14
///
Client,
#region Device
///
/// 设备运行模式 0:开发,1:上机
/// Id: 10000
///
DEV_RUN_MODE,
#endregion
#region Motion
///
/// 运动控制卡驱动
/// Id: 11000
///
MOT_CARD_DRIVER,
///
/// IO输入模块数量
/// Id: 11001
///
MOT_DI_NUM,
///
/// IO输出模块数量
/// Id: 11002
///
MOT_DO_NUM,
///
/// 每个IO模块的点位数
/// Id: 11003
///
MOT_SITE_NUM,
///
/// 运动监控CT
/// Id: 11010
///
MOT_MONITOR_CT,
///
/// 运动状态CT
/// Id: 11011
///
MOT_STATUS_CT,
///
/// 电机自动上使能
/// Id: 11020
///
MOT_AXIS_AUTO,
#endregion
#region Process,
///
/// 任务触发CT
/// Id: 12010
///
PRC_TRIGGER_CT,
#endregion
#region Client
///
/// 角色无操作后登出时间(单位秒)
/// Id: 14000
///
CLT_LOGIN_TIMEOUT
#endregion
}
}