机器人执行机构实际位置.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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 = "6e0";
  11. public 机器人执行机构实际位置()
  12. {
  13. }
  14. /// <summary>
  15. /// 方向盘机构转角
  16. /// </summary>
  17. [Data(BitStart = 21, BitLength = 19, DataType = "binary", Description = "", Sequence = 1)]
  18. public string 方向盘机构转角 { get; set; }
  19. /// <summary>
  20. /// 离合踏板机构位置
  21. /// </summary>
  22. [Data(BitStart = 40, BitLength = 7, DataType = "binary", Description = "", Sequence = 2)]
  23. public string 离合踏板机构位置{ get; set; }
  24. /// <summary>
  25. /// 制动踏板机构位置
  26. /// </summary>
  27. [Data(BitStart = 48, BitLength = 8, DataType = "binary", Description = "", Sequence = 3)]
  28. public string 制动踏板机构位置{ get; set; }
  29. /// <summary>
  30. /// 油门踏板机构位置
  31. /// </summary>
  32. [Data(BitStart = 56, BitLength = 7, DataType = "binary", Description = "", Sequence = 4)]
  33. public string 油门踏板机构位置 { get; set; }
  34. }
  35. }