PMState.cs 563 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Aitex.Triton160.Common
  6. {
  7. public enum PMState
  8. {
  9. Init,
  10. Idle,
  11. Vent,
  12. Feed,
  13. Pumping,
  14. StopPumping,
  15. GasFlowing,
  16. StopGasFlowing,
  17. RfPowering,
  18. CyclePurge,
  19. LinePump,
  20. TankPump,
  21. ContainerPump,
  22. LoadProcessRecipe,
  23. ProcessHighVac,
  24. PreProcess,
  25. Processing,
  26. PostProcess,
  27. LeakCheck,
  28. Error,
  29. }
  30. }