IPreAlign.cs 694 B

12345678910111213141516171819202122232425262728293031
  1. using MECF.Framework.Common.Equipment;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using Venus_Core;
  8. namespace Venus_RT.Devices.PreAligner
  9. {
  10. public interface IPreAlign
  11. {
  12. ModuleName Module { get; }
  13. int ROffset { get; }
  14. int TOffset { get; }
  15. bool IsOverRange { get; }
  16. bool IsConnect { get; }
  17. bool IsError { get; }
  18. RState Status { get; }
  19. bool Home();
  20. bool Align();
  21. bool AlignWithAngle(float angle);
  22. bool ReSet();
  23. bool SCAN();
  24. bool QueryOffset();
  25. bool ServeUp();
  26. bool CanSendCommand();
  27. }
  28. }