IPreAlign.cs 670 B

123456789101112131415161718192021222324252627282930
  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 CanSendCommand();
  26. }
  27. }