using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FLY.Simulation { public interface ISimulationDrive { /// /// 当前位置 /// int Pos { get; } /// /// 脉冲复位 /// void Reset(); /// /// 停止 /// void Stop(); /// /// 归零 /// void Org(); /// /// 前进 /// void Forw(); /// /// 后退 /// void Backw(); /// /// 运行到 /// /// void Runto(int dest); void OnPoll(DateTime now); } }