终端一体化运控平台
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

33 righe
775 B

  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
  7. {
  8. public class GlobalDevice
  9. {
  10. /// <summary>
  11. /// PLC 设备数据
  12. /// </summary>
  13. public static PlcToComputer PlcData { get; set; } = new PlcToComputer();
  14. /// <summary>
  15. /// 电机速度
  16. /// </summary>
  17. public static ushort[] MotorSpeed { get; set; } = new ushort[32];
  18. /// <summary>
  19. /// 输送带控制
  20. /// </summary>
  21. public static uint MotorControl { get; set; }
  22. /// <summary>
  23. /// 输送带控制反馈
  24. /// </summary>
  25. public static uint MotorControlFeedback { get; set; }
  26. }
  27. }