1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Aitex.Triton160.Common
- {
- public enum TritonOperation
- {
- DeviceOperation,
- Pump,
- StopPump,
- GasFlow,
- StopGasFlow,
- RfPower,
- Vent,
- WaterFlowAlarm,
- Purge,
- Abort,
- SetManualMode,
- SetAutoMode,
- SetConfig,
- //SetHardwareConfig,
- RunRecipe,
- SkipCurrentStep,
- AbortRecipe,
-
- Reset,
- LeakCheck,
- DeleteLeakCheck,
- BuzzerOFF
- }
- }
|