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

27 lines
658 B

  1. namespace BPASmartClient.DosingSystem
  2. {
  3. public class GlobalDevice
  4. {
  5. /// <summary>
  6. /// PLC 设备数据
  7. /// </summary>
  8. public static PlcToComputer PlcData { get; set; } = new PlcToComputer();
  9. /// <summary>
  10. /// 电机速度
  11. /// </summary>
  12. public static ushort[] MotorSpeed { get; set; } = new ushort[32];
  13. /// <summary>
  14. /// 输送带控制
  15. /// </summary>
  16. public static uint MotorControl { get; set; }
  17. /// <summary>
  18. /// 输送带控制反馈
  19. /// </summary>
  20. public static uint MotorControlFeedback { get; set; }
  21. }
  22. }