123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using Aitex.Core.RT.Device;
- using Aitex.Core.RT.Routine;
- using Aitex.Core.RT.SCCore;
- using MECF.Framework.Common.Routine;
- using PunkHPX8_Core;
- using PunkHPX8_RT.Devices.PlatingCell;
- using PunkHPX8_RT.Devices.Reservoir;
- using PunkHPX8_RT.Devices.Temperature;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection;
- using System.Text;
- using System.Threading.Tasks;
- namespace PunkHPX8_RT.Modules.Reservoir
- {
- public class DIReservoirInitializeRoutine : RoutineBase, IRoutine
- {
- /// <summary>
- /// 构造函数
- /// </summary>
- /// <param name="module"></param>
- public DIReservoirInitializeRoutine(string module) : base(module)
- {
- }
- /// <summary>
- /// 启动
- /// </summary>
- /// <param name="objs"></param>
- /// <returns></returns>
- public RState Start(params object[] objs)
- {
-
- return RState.End;
- }
- /// <summary>
- /// 监控
- /// </summary>
- /// <returns></returns>
- public RState Monitor()
- {
- return RState.End;
- }
- /// <summary>
- /// 中止
- /// </summary>
- public void Abort()
- {
- }
- }
- }
|