IPreAlign.cs 636 B

1234567891011121314151617181920212223242526272829
  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 IsConnect { get; }
  16. bool IsError { get; }
  17. RState Status { get; }
  18. bool Home();
  19. bool Align();
  20. bool AlignWithAngle(float angle);
  21. bool ReSet();
  22. bool SCAN();
  23. bool QueryOffset();
  24. bool CanSendCommand();
  25. }
  26. }