IAlignerHandlerFactory.cs 639 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Aitex.Sorter.Common;
  7. namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.Robot
  8. {
  9. public interface IAlignerHandlerFactory
  10. {
  11. IHandler Init();
  12. IHandler Home();
  13. IHandler Event();
  14. IHandler Grip(Hand hand);
  15. IHandler Release(Hand hand);
  16. IHandler LiftUp();
  17. IHandler LiftDown();
  18. IHandler MoveToReadyPostion();
  19. IHandler QueryState();
  20. IHandler Clear();
  21. IHandler Stop();
  22. IHandler Align(double anlge);
  23. }
  24. }