转向三角波或线性控制.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 = "7f3";
  11. public 转向三角波或线性控制()
  12. {
  13. }
  14. /// <summary>
  15. /// 控制时间
  16. /// </summary>
  17. [Data(BitStart = 5, BitLength = 11, DataType = "binary", Description = "", Sequence = 1)]
  18. public string 控制时间 { get; set; }
  19. /// <summary>
  20. /// 方向盘位置基准值
  21. /// </summary>
  22. [Data(BitStart = 17, BitLength = 11, DataType = "binary", Description = "", Sequence = 2)]
  23. public string 方向盘位置基准值 { get; set; }
  24. /// <summary>
  25. /// 方向盘转速
  26. /// </summary>
  27. [Data(BitStart = 29, BitLength = 11, DataType = "binary", Description = "", Sequence = 3)]
  28. public string 方向盘转速 { get; set; }
  29. /// <summary>
  30. /// 个数
  31. /// </summary>
  32. [Data(BitStart = 40, BitLength = 4, DataType = "binary", Description = "", Sequence = 4)]
  33. public string 个数 { get; set; }
  34. /// <summary>
  35. /// 脉宽
  36. /// </summary>
  37. [Data(BitStart = 47, BitLength = 9, DataType = "binary", Description = "", Sequence = 5)]
  38. public string 脉宽 { get; set; }
  39. /// <summary>
  40. /// 峰值
  41. /// </summary>
  42. [Data(BitStart = 56, BitLength = 8, DataType = "binary", Description = "", Sequence = 6)]
  43. public string 峰值 { get; set; }
  44. }
  45. }