ITransferRobot.cs 807 B

1234567891011121314151617181920212223
  1. using Aitex.Sorter.Common;
  2. using MECF.Framework.Common.Equipment;
  3. using Venus_Core;
  4. namespace Venus_RT.Devices
  5. {
  6. public interface ITransferRobot
  7. {
  8. RState Status { get;}
  9. bool Home();
  10. bool Halt();
  11. bool CheckLoad(Hand hand = Hand.Blade1);
  12. bool Goto(ModuleName station, int slot, Hand hand);
  13. bool MoveTo(ModuleName stnFrom, ModuleName stnTo, Hand hand);
  14. bool PickExtend(ModuleName chamber, int slot, Hand hand);
  15. bool PickRetract(ModuleName chamber, int slot, Hand hand);
  16. bool PlaceExtend(ModuleName chamber, int slot, Hand hand);
  17. bool PlaceRetract(ModuleName chamber, int slot, Hand hand);
  18. bool Pick(ModuleName station, int slot, Hand hand);
  19. bool Place(ModuleName station, int slot, Hand hand);
  20. }
  21. }