LinMotDeviceData.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Xml.Schema;
  7. using System.Xml.Serialization;
  8. namespace MECF.Framework.Common.Device.LinMot
  9. {
  10. public class LinMotDeviceData
  11. {
  12. [XmlAttribute(AttributeName = "Name", Form = XmlSchemaForm.Unqualified, DataType = "string")]
  13. public string Name { get; set; }
  14. public double TopPosition { get; set; }
  15. public double BottomPosition { get; set; }
  16. public double UpMaxSpeed { get; set; }
  17. public double DownMaxSpeed { get; set; }
  18. public int UpMaxAcceleration { get; set; }
  19. public int DownMaxAcceleration { get; set; }
  20. public int UpMaxDeceleration { get; set; }
  21. public int DownMaxDeceleration { get; set; }
  22. public int MotionMode { get; set; }
  23. public int CurveId { get; set; }
  24. public int CurveOffset { get; set; }
  25. public int CurveTime { get; set; }
  26. public int CurveScale { get; set; }
  27. public int StartMode { get; set; }
  28. }
  29. }