ILoadLock.cs 889 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.LoadLocks
  7. {
  8. public interface ILoadLock
  9. {
  10. bool CheckAtm();
  11. bool CheckVacuum();
  12. bool SetFastVentValve(bool isOpen, out string reason);
  13. bool SetSlowVentValve(bool isOpen, out string reason);
  14. bool SetFastPumpValve(bool isOpen, out string reason);
  15. bool SetSlowPumpValve(bool isOpen, out string reason);
  16. bool SetDoor(bool isOpen, out string reason);
  17. bool CheckDoorOpen();
  18. bool CheckDoorClose();
  19. bool SetLift(bool isUp, out string reason);
  20. bool SetLift(int slot, out string reason);
  21. bool CheckLiftUp();
  22. bool CheckLiftDown();
  23. bool CheckLift(int slot);
  24. }
  25. }