IVCE.cs 416 B

123456789101112131415
  1. 
  2. namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.VCEs
  3. {
  4. public interface IVCE
  5. {
  6. bool CheckAtm();
  7. bool CheckVacuum();
  8. bool SetFastVentValve(bool isOpen, out string reason);
  9. bool SetSlowVentValve(bool isOpen, out string reason);
  10. bool SetFastPumpValve(bool isOpen, out string reason);
  11. bool SetSlowPumpValve(bool isOpen, out string reason);
  12. }
  13. }