终端一体化运控平台
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.
 
 
 

101 lines
2.8 KiB

  1. namespace BPASmartClient.DosingSystem
  2. {
  3. public class DeviceAddress
  4. {
  5. /// <summary>
  6. /// 设备名称起始地址
  7. /// </summary>
  8. public static string DeviceName { get; set; } = "LW0";
  9. public static string WorkModel { get; set; } = "LW50";
  10. /// <summary>
  11. /// 料仓重量反馈起始地址
  12. /// </summary>
  13. public static string WeightFeedback { get; set; } = "LW52";
  14. /// <summary>
  15. /// 重量设置地址
  16. /// </summary>
  17. public static string WeightSet { get; set; } = "LW21";
  18. /// <summary>
  19. /// 启动信号地址
  20. /// </summary>
  21. public static string Start { get; set; } = "LW20";
  22. /// <summary>
  23. /// 下料重量反馈地址
  24. /// </summary>
  25. public static string CutWeightFeedback { get; set; } = "LW54";
  26. /// <summary>
  27. /// 设备编号
  28. /// </summary>
  29. public static string DeviceNum { get; set; } = "LW57";
  30. /// <summary>
  31. /// 设备故障编码
  32. /// </summary>
  33. public static string DeviceAlarmCode { get; set; } = "LW51";
  34. /// <summary>
  35. /// 原料设备类型
  36. /// 1:膏体,2:液体,3:粉体
  37. /// </summary>
  38. public static string MaterialDeviceType { get; set; } = "LW56";
  39. /// <summary>
  40. /// 设备运行状态地址
  41. /// </summary>
  42. public static string RunStatus { get; set; } = "LW60";
  43. /// <summary>
  44. /// 出料完成,置位该信号,plc复位运行状态
  45. /// </summary>
  46. public static string FinfishStatus { get; set; } = "LW40";
  47. /// <summary>
  48. /// 慢加重量
  49. /// </summary>
  50. public static string SlowlyAddWeight { get; set; } = "LW23";
  51. /// <summary>
  52. /// 提前关阀重量
  53. /// </summary>
  54. public static string PreCloseValveWeight { get; set; } = "LW25";
  55. /// <summary>
  56. /// 快加速度
  57. /// </summary>
  58. public static string RapidAcceleration { get; set; } = "LW27";
  59. /// <summary>
  60. /// 慢加速度
  61. /// </summary>
  62. public static string SlowAcceleration { get; set; } = "LW29";
  63. /// <summary>
  64. /// 伺服手动速度
  65. /// </summary>
  66. public static string ServoManualSpeed { get; set; } = "LW31";
  67. /// <summary>
  68. /// 料仓上限重量
  69. /// </summary>
  70. public static string SiloUpperLimitWeight { get; set; } = "LW33";
  71. /// <summary>
  72. /// 料仓下限重量
  73. /// </summary>
  74. public static string LowerLimitWeightOfSilo { get; set; } = "LW35";
  75. /// <summary>
  76. /// 搅拌速度
  77. /// </summary>
  78. public static string StirringSpeed { get; set; } = "LW37";
  79. }
  80. }