终端一体化运控平台
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

33 linhas
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. }