geboshi_V1/LeatherProject/GeBoShi/SysCtrl/SysEnum.cs

72 lines
1.5 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GeBoShi.SysCtrl
{
public enum LightChannelEnum
{
[Description("通道1")]
CH1 = 1,
[Description("通道2")]
CH2 = 2,
[Description("通道3")]
CH3 = 3,
[Description("通道4")]
CH4 = 4,
[Description("通道5")]
CH5 = 5,
[Description("通道6")]
CH6 = 6,
}
public enum DOName
{
= 0,
绿 = 1,
= 2,
= 3,
= 4,
= 5,
绿 = 7,
绿 = 8,
= 9,
= 10,
= 11,
= 12,
X1回原 = 13,
X2回原 = 14,
Y轴回原点 = 15
}
public enum DIName
{
= 14,
= 3,
= 2,
= 4,
= 5,
= 6,
= 7,
= 8,
= 9,
= 0,
= 1,
= 10,
= 11,
Y轴回原点完成 = 15
}
}