IPreAlign.cs 550 B

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