AxisConfig.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MECF.Framework.Common.Device
  7. {
  8. public class AxisConfig
  9. {
  10. public int HomingSpeed { get; set; }
  11. public byte HomingMethod { get; set; }
  12. public int HomingOffset { get; set; }
  13. public int HomingSpeedHomeSwitch { get; set; }
  14. public int HomingSpeedEncoderIndex { get; set; }
  15. public int HomingAccelDecel { get; set; }
  16. public int HomingAcceleration { get; set; }
  17. public int HomingDeceleration { get; set; }
  18. public int HomingTimeOut { get; set; }
  19. public int ErrorLimit { get; set; }
  20. public int ReverseSoftwareLimit { get; set; }
  21. public int ForwardSoftwareLimit { get; set; }
  22. public int Speed { get; set; }
  23. public int Acceleration { get; set; }
  24. public int Deceleration { get; set; }
  25. public int NegativeTorqueLimit { get; set; }
  26. public int PositiveTorqueLimit { get; set; }
  27. }
  28. }