using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EC.Utils.PLC
{
///
/// 命令编码
///
public partial class PLCCommandFunction
{
///
/// 理桶 开仓口 PC->PLC
///
public const string OpenStock = "A001";
///
/// PC->PLC SendTask
///
public const string SendTask = "A002";
///
/// PLC->PC 取空筒完成
///
public const string NullTubeToDoffer = "A002";
///
/// 天车到达卷绕机 PLC->PC
///
public const string DofferInServcie = "A003";
///
/// 下丝指令 pc->TMT 推请求推
///
public const string PusherRequest = "A004";
///
/// PC->PLC 下丝完成
///
public const string PusherComplete = "A005";
///
/// PC->PLC上空筒
///
public const string PaperTubeRequest = "A006";
///
/// PLC->PC 上空筒完成 请求锁->TMT Chuck
///
public const string PaperTubeComplete = "A007";
///
/// TMT ChuckComplete->PC->PLC 答复 锁完成
///
public const string ChuckComplete = "A008";
///
/// 放置丝车指令 PLC->PC
///
public const string DofferToCarComplete = "A009";
}
}