ITM.cs 788 B

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