油门机构位置时间控制.cs 1021 B

1234567891011121314151617181920212223242526272829303132333435
  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 = "7f5";
  11. public 油门机构位置时间控制()
  12. {
  13. }
  14. /// <summary>
  15. /// 控制时间
  16. /// </summary>
  17. [Data(BitStart = 21, BitLength = 11, DataType = "binary", Description = "", Sequence = 1)]
  18. public string 控制时间 { get; set; }
  19. /// <summary>
  20. /// 油门位置基准值
  21. /// </summary>
  22. [Data(BitStart = 37, BitLength = 11, DataType = "binary", Description = "", Sequence = 2)]
  23. public string 油门位置基准值 { get; set; }
  24. /// <summary>
  25. /// 油门速度
  26. /// </summary>
  27. [Data(BitStart = 54, BitLength = 10, DataType = "binary", Description = "", Sequence = 3)]
  28. public string 油门速度 { get; set; }
  29. }
  30. }