ITM.cs 781 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using MECF.Framework.Common.Equipment;
  7. namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.TMs
  8. {
  9. public interface ITM
  10. {
  11. bool CheckAtm();
  12. bool CheckVacuum();
  13. bool SetFastVentValve(bool isOpen, out string reason);
  14. bool SetSlowVentValve(bool isOpen, out string reason);
  15. bool SetFastPumpValve(bool isOpen, out string reason);
  16. bool SetSlowPumpValve(bool isOpen, out string reason);
  17. bool SetSlitValve(ModuleName module, bool isOpen, out string reason);
  18. bool CheckSlitValveOpen(ModuleName module);
  19. bool CheckSlitValveClose(ModuleName module);
  20. }
  21. }