Estop系统信息.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SIASUN.Autopilot.Device.Message
  7. {
  8. public class Estop系统信息
  9. {
  10. public const string OperationCode = "2e0";
  11. public Estop系统信息()
  12. {
  13. }
  14. /// <summary>
  15. /// Estop异常状态
  16. /// </summary>
  17. [Data(BitStart = 17, BitLength = 1, DataType = "binary", Description = "", Sequence = 1)]
  18. public string Estop异常状态 { get; set; }
  19. /// <summary>
  20. /// 急停制动气泵使能状态
  21. /// </summary>
  22. [Data(BitStart = 40, BitLength = 1, DataType = "binary", Description = "", Sequence = 2)]
  23. public string 急停制动气泵使能状态 { get; set; }
  24. /// <summary>
  25. /// 急停制动气泵使能状态
  26. /// </summary>
  27. [Data(BitStart = 48, BitLength = 1, DataType = "binary", Description = "", Sequence = 3)]
  28. public string 机器人Estop使能状态 { get; set; }
  29. /// <summary>
  30. /// Estop心跳
  31. /// </summary>
  32. [Data(BitStart = 56, BitLength = 4, DataType = "binary", Description = "", Sequence = 4)]
  33. public string Estop心跳 { get; set; }
  34. }
  35. }