车辆状态2.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 车辆状态2
  9. {
  10. public const string OperationCode = "6f2";
  11. public 车辆状态2()
  12. {
  13. }
  14. /// <summary>
  15. /// 实际发动机转速
  16. /// </summary>
  17. [Data(BitStart = 3, BitLength = 13, DataType = "binary", Description = "", Sequence = 1)]
  18. public string 实际发动机转速 { get; set; }
  19. /// <summary>
  20. /// 实际车速
  21. /// </summary>
  22. [Data(BitStart = 16, BitLength = 8, DataType = "binary", Description = "", Sequence = 2)]
  23. public string 实际车速 { get; set; }
  24. /// <summary>
  25. /// 实际方向盘角度梯度
  26. /// </summary>
  27. [Data(BitStart = 28, BitLength = 12, DataType = "binary", Description = "", Sequence = 3)]
  28. public string 实际方向盘角度梯度 { get; set; }
  29. /// <summary>
  30. /// 实际方向盘转角
  31. /// </summary>
  32. [Data(BitStart = 45, BitLength = 19, DataType = "binary", Description = "", Sequence = 4)]
  33. public string 实际方向盘转角 { get; set; }
  34. }
  35. }