执行机构使能状态.cs 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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 执行机构使能状态
  9. {
  10. public const string OperationCode = "6e5";
  11. public 执行机构使能状态()
  12. {
  13. }
  14. /// <summary>
  15. /// 制动机构手阀状态
  16. /// </summary>
  17. [Data(BitStart = 40,BitLength = 1, DataType = "binary", Description = "", Sequence = 1)]
  18. public string 制动机构手阀状态 { get; set; }
  19. /// <summary>
  20. /// 换挡臂Y电机使能状态
  21. /// </summary>
  22. [Data(BitStart = 48, BitLength = 1, DataType = "binary", Description = "", Sequence = 2)]
  23. public string 换挡臂Y电机使能状态 { get; set; }
  24. /// <summary>
  25. /// 离合电机使能状态
  26. /// </summary>
  27. [Data(BitStart = 50, BitLength = 1, DataType = "binary", Description = "", Sequence = 3)]
  28. public string 离合电机使能状态 { get; set; }
  29. /// <summary>
  30. /// 油门踏板离合器通电状态
  31. /// </summary>
  32. [Data(BitStart = 52, BitLength = 1, DataType = "binary", Description = "", Sequence = 4)]
  33. public string 油门踏板离合器通电状态 { get; set; }
  34. /// <summary>
  35. /// 系统软急停使能状态
  36. /// </summary>
  37. [Data(BitStart = 54, BitLength = 1, DataType = "binary", Description = "", Sequence = 5)]
  38. public string 系统软急停使能状态 { get; set; }
  39. /// <summary>
  40. /// 油门踏板电机使能状态
  41. /// </summary>
  42. [Data(BitStart = 56, BitLength = 1, DataType = "binary", Description = "", Sequence = 6)]
  43. public string 油门踏板电机使能状态 { get; set; }
  44. /// <summary>
  45. /// 制动电机使能状态
  46. /// </summary>
  47. [Data(BitStart = 58, BitLength = 1, DataType = "binary", Description = "", Sequence = 7)]
  48. public string 制动电机使能状态 { get; set; }
  49. /// <summary>
  50. /// 转向电机使能状态
  51. /// </summary>
  52. [Data(BitStart = 60, BitLength = 1, DataType = "binary", Description = "", Sequence = 8)]
  53. public string 转向电机使能状态 { get; set; }
  54. /// <summary>
  55. /// 换挡臂X电机使能状态
  56. /// </summary>
  57. [Data(BitStart = 62, BitLength = 1, DataType = "binary", Description = "", Sequence = 9)]
  58. public string 换挡臂X电机使能状态 { get; set; }
  59. }
  60. }