ITransferRobot.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. using Aitex.Sorter.Common;
  2. using MECF.Framework.Common.Equipment;
  3. using Venus_Core;
  4. using MECF.Framework.Common.CommonData;
  5. namespace Venus_RT.Devices
  6. {
  7. public interface ITransferRobot
  8. {
  9. RState Status { get;}
  10. RobotMoveInfo TMRobotMoveInfo { get; }
  11. bool IsHomed { get; }
  12. double Offset_X { get; }
  13. double Offset_Y { get; }
  14. double Offset_D { get; }
  15. bool Home();
  16. bool Halt();
  17. bool CheckLoad(Hand hand = Hand.Blade1);
  18. bool QueryAwc();
  19. bool Goto(ModuleName station, int slot, Hand hand);
  20. bool MoveTo(ModuleName stnFrom, ModuleName stnTo, Hand hand);
  21. bool PickExtend(ModuleName chamber, int slot, Hand hand);
  22. bool PickRetract(ModuleName chamber, int slot, Hand hand);
  23. bool PlaceExtend(ModuleName chamber, int slot, Hand hand);
  24. bool PlaceRetract(ModuleName chamber, int slot, Hand hand);
  25. bool Pick(ModuleName station, int slot, Hand hand);
  26. bool Place(ModuleName station, int slot, Hand hand);
  27. void SetRobotMovingInfo(RobotAction action, Hand hand, ModuleName target);
  28. }
  29. }