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

45 lines
1.1 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.DosingSystem.Model
  7. {
  8. public class DeviceAddress
  9. {
  10. /// <summary>
  11. /// 设备名称起始地址
  12. /// </summary>
  13. public static string DeviceName { get; set; } = "LW0";
  14. /// <summary>
  15. /// 料仓重量反馈起始地址
  16. /// </summary>
  17. public static string WeightFeedback { get; set; } = "LW204";
  18. /// <summary>
  19. /// 重量设置地址
  20. /// </summary>
  21. public static string WeightSet { get; set; } = "LW200";
  22. /// <summary>
  23. /// 启动信号地址
  24. /// </summary>
  25. public static string Start { get; set; } = "LW210";
  26. /// <summary>
  27. /// 下料重量反馈地址
  28. /// </summary>
  29. public static string CutWeightFeedback { get; set; } = "LW202";
  30. /// <summary>
  31. /// 设备运行状态地址
  32. /// </summary>
  33. public static string RunStatus { get; set; } = "LW206";
  34. }
  35. }