革博士程序V1仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
969 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace GeBoShi.SysCtrl
  8. {
  9. public enum LightChannelEnum
  10. {
  11. [Description("通道1")]
  12. CH1 = 1,
  13. [Description("通道2")]
  14. CH2 = 2,
  15. [Description("通道3")]
  16. CH3 = 3,
  17. [Description("通道4")]
  18. CH4 = 4,
  19. [Description("通道5")]
  20. CH5 = 5,
  21. [Description("通道6")]
  22. CH6 = 6,
  23. }
  24. public enum DOName
  25. {
  26. 三色灯红灯 = 10,
  27. 三色灯绿灯 = 11,
  28. 三色灯黄灯 = 12,
  29. 三色灯蜂鸣器 = 13,
  30. 启动 = 0,
  31. 复位 = 9,
  32. 停止 = 1,
  33. 日光灯 = 15,
  34. }
  35. public enum DIName
  36. {
  37. 启动按钮 = 14,
  38. 暂停按钮 = 1,
  39. 复位按钮 = 2,
  40. 门磁 = 11,
  41. }
  42. }