TritonOperation.cs 606 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 TritonOperation
  8. {
  9. DeviceOperation,
  10. Pump,
  11. StopPump,
  12. GasFlow,
  13. StopGasFlow,
  14. RfPower,
  15. Vent,
  16. WaterFlowAlarm,
  17. Purge,
  18. Abort,
  19. SetManualMode,
  20. SetAutoMode,
  21. SetConfig,
  22. //SetHardwareConfig,
  23. RunRecipe,
  24. SkipCurrentStep,
  25. AbortRecipe,
  26. Reset,
  27. LeakCheck,
  28. DeleteLeakCheck,
  29. BuzzerOFF
  30. }
  31. }