123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876 |
- using MECF.Framework.Common.CommonData;
- using MECF.Framework.Common.Communications;
- using MECF.Framework.Common.Equipment;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.Robots.HiWin
- {
- public abstract class HiwinRobotHandler : HandlerBase
- {
- public HiwinRobot Device { get; set; }
- protected string _requestResponse = "";
- protected string _command;
- protected string _parameter;
- protected string _target;
- protected RobotArmEnum _blade;
- public HiwinRobotHandler(HiwinRobot device, string command, string parameter = null) : base(BuildMessage(command, parameter))
- {
- Device = device;
- _command = command;
- _parameter = parameter;
- Name = command;
- }
- public static string BuildMessage(string command, string parameter)
- {
- string msg = parameter == null ? $"{command}" : $"{command} {parameter}";
- return msg + "\r\n";
- }
- public override bool HandleMessage(MessageBase msg, out bool transactionComplete)
- {
- HiwinRobotMessage response = msg as HiwinRobotMessage;
- ResponseMessage = msg;
- if (response.IsError)
- {
- Device.NoteError(response.Data);
- }
- if (response.IsComplete)
- {
- SetState(EnumHandlerState.Completed);
- transactionComplete = true;
- return true;
- }
- if (response.IsResponse)
- {
- _requestResponse = response.Data;
- }
- //处理反馈信息
- transactionComplete = false;
- return false;
- }
- }
- /// <summary>
- /// 通用命令
- /// </summary>
- public class SunwayRobotRawCommandHandler : HiwinRobotHandler
- {
- public SunwayRobotRawCommandHandler(HiwinRobot device, string command, string parameter = null)
- : base(device, command, parameter)
- {
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- if (base.HandleMessage(msg, out handled))
- {
- var result = msg as HiwinRobotMessage;
- var rawMsg = _requestResponse != null ? _requestResponse + "$" + result.RawMessage : result.RawMessage;
- //Device.NoteRawCommandInfo(_command, rawMsg);
- }
- return true;
- }
- }
- public class HiwinRobotGetControllerStatusHandler : HiwinRobotHandler
- {
- //RESP,VAR.....
- public HiwinRobotGetControllerStatusHandler(HiwinRobot device, ModuleName module,int timeout=300)
- : base(device, "STAT")
- {
- AckTimeout = TimeSpan.FromSeconds(timeout);
- CompleteTimeout = TimeSpan.FromSeconds(timeout);
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- /// <summary>
- /// 读取机械臂全部错误
- /// </summary>
- public class HiwinRobotGetAllErrHandler : HiwinRobotHandler
- {
- //0000, 0000, 0001, 0001, 0001, 0000, 0000, 0000
- //0000, 0002, 0000, 0000, 0000, 0000, 0000, 0000
- public HiwinRobotGetAllErrHandler(HiwinRobot device, int timeout=300)
- : base(device, "ERR", $"0")
- {
- AckTimeout = TimeSpan.FromSeconds(timeout);
- CompleteTimeout = TimeSpan.FromSeconds(timeout);
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- /// <summary>
- /// 读取机械臂输入信息错误
- /// </summary>
- public class HiwinRobotGeInputErrHandler : HiwinRobotHandler
- {
- //RESP,VAR.....
- public HiwinRobotGeInputErrHandler(HiwinRobot device, ModuleName module,int timeout=300)
- : base(device, "ERR", $"1")
- {
- AckTimeout = TimeSpan.FromSeconds(timeout);
- CompleteTimeout = TimeSpan.FromSeconds(timeout);
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- /// <summary>
- /// 要求重置控制器
- /// </summary>
- public class HiwinRobotResetControllerErrHandler : HiwinRobotHandler
- {
- //RESP,VAR.....
- public HiwinRobotResetControllerErrHandler(HiwinRobot device, ModuleName module,int timeout=300)
- : base(device, "RES")
- {
- AckTimeout = TimeSpan.FromSeconds(timeout);
- CompleteTimeout = TimeSpan.FromSeconds(timeout);
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- /// <summary>
- /// 设置机械手轴运动速度
- /// </summary>
- public class HiwinRobotSetAxisVelocityHandler : HiwinRobotHandler
- {
- /// <summary>
- /// 设置机械手轴运动速度
- /// </summary>
- /// <param name="device"></param>
- /// <param name="module"></param>
- /// <param name="axis"></param>
- /// <param name="velocity"></param>
- public HiwinRobotSetAxisVelocityHandler(HiwinRobot device, ModuleName module, string axis, string velocity,int timeout=300)
- : base(device, "SSP", $"{axis},{velocity}")
- {
- AckTimeout = TimeSpan.FromSeconds(timeout);
- CompleteTimeout = TimeSpan.FromSeconds(timeout);
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- /// <summary>
- /// 设置机械手轴运动速度
- /// </summary>
- public class HiwinRobotSetSpeedHandler : HiwinRobotHandler
- {
- /// <summary>
- /// 设置机械手运动速度
- /// </summary>
- /// <param name="device"></param>
- /// <param name="module"></param>
- /// <param name="axis"></param>
- /// <param name="velocity"></param>
- public HiwinRobotSetSpeedHandler(HiwinRobot device, float speedPercent)
- : base(device, "SSPP", $"A,{speedPercent},{speedPercent},{speedPercent}")
- {
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- /// <summary>
- /// 设置机械手轴运动加速
- /// </summary>
- public class HiwinRobotSetAxisAccelerationHandler : HiwinRobotHandler
- {
- /// <summary>
- /// 设置机械手轴运动速度
- /// </summary>
- /// <param name="device"></param>
- /// <param name="module"></param>
- /// <param name="axis"></param>
- /// <param name="velocity"></param>
- public HiwinRobotSetAxisAccelerationHandler(HiwinRobot device, ModuleName module, string axis, string acceleration,int timeout=300)
- : base(device, "SAD", $"{axis},{acceleration}")
- {
- AckTimeout = TimeSpan.FromSeconds(timeout);
- CompleteTimeout = TimeSpan.FromSeconds(timeout);
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- /// <summary>
- /// 设置机械手轴运动加速
- /// </summary>
- public class HiwinRobotSetAxisDecelerationHandler : HiwinRobotHandler
- {
- /// <summary>
- /// 设置机械手轴运动速度
- /// </summary>
- /// <param name="device"></param>
- /// <param name="module"></param>
- /// <param name="axis"></param>
- /// <param name="velocity"></param>
- public HiwinRobotSetAxisDecelerationHandler(HiwinRobot device, ModuleName module, string axis, string deceleration,int timeout=300)
- : base(device, "SDL", $"{axis},{deceleration}")
- {
- AckTimeout = TimeSpan.FromSeconds(timeout);
- CompleteTimeout = TimeSpan.FromSeconds(timeout);
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- /// <summary>
- /// 打开或关闭机械手电机
- /// </summary>
- public class HiwinRobotOpeOrCloseMotorHandler : HiwinRobotHandler
- {
- /// <summary>
- /// 设置机械手轴运动速度
- /// </summary>
- /// <param name="device"></param>
- /// <param name="module"></param>
- /// <param name="isOpen"></param>
- /// <param name="axis"></param>
- public HiwinRobotOpeOrCloseMotorHandler(HiwinRobot device, ModuleName module, bool isOpen, string axis,int timeout=300)
- : base(device, isOpen ? "SVON" : "SVOFF", axis)
- {
- AckTimeout = TimeSpan.FromSeconds(timeout);
- CompleteTimeout = TimeSpan.FromSeconds(timeout);
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- /// <summary>
- /// 移动机械手至绝对位置
- /// </summary>
- public class HiwinRobotAxisMoveAbsoluteHandler : HiwinRobotHandler
- {
- /// <summary>
- /// 设置机械手轴运动速度
- /// </summary>
- /// <param name="device"></param>
- /// <param name="module"></param>
- /// <param name="axis"></param>
- /// <param name="position"></param>
- public HiwinRobotAxisMoveAbsoluteHandler(HiwinRobot device, ModuleName module, string axis, int position,int timeout=300)
- : base(device, "MOVA", $"{axis},{position}")
- {
- AckTimeout = TimeSpan.FromSeconds(timeout);
- CompleteTimeout = TimeSpan.FromSeconds(timeout);
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- /// <summary>
- /// 移动机械手至相对位置
- /// </summary>
- public class HiwinRobotAxisMoveRelativeHandler : HiwinRobotHandler
- {
- /// <summary>
- /// 设置机械手轴运动速度
- /// </summary>
- /// <param name="device"></param>
- /// <param name="module"></param>
- /// <param name="axis"></param>
- /// <param name="position"></param>
- public HiwinRobotAxisMoveRelativeHandler(HiwinRobot device, ModuleName module, string axis, int position,int timeout=300)
- : base(device, "MOVR", $"{axis},{position}")
- {
- AckTimeout = TimeSpan.FromSeconds(timeout);
- CompleteTimeout = TimeSpan.FromSeconds(timeout);
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- /// <summary>
- /// 移动机械手轴移动X,Y位置
- /// </summary>
- public class HiwinRobotAxisMoveXYHandler : HiwinRobotHandler
- {
- /// <summary>
- /// 设置机械手轴运动速度
- /// </summary>
- /// <param name="device"></param>
- /// <param name="module"></param>
- /// <param name="axis"></param>
- /// <param name="x"></param>
- /// <param name="y"></param>
- public HiwinRobotAxisMoveXYHandler(HiwinRobot device, ModuleName module, string axis, int x, int y,int timeout=300)
- : base(device, "MOVXY", $"{axis},{x},{y}")
- {
- AckTimeout = TimeSpan.FromSeconds(timeout);
- CompleteTimeout = TimeSpan.FromSeconds(timeout);
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- /// <summary>
- /// 停止机械手轴移动
- /// </summary>
- public class HiwinRobotAxisStopMoveHandler : HiwinRobotHandler
- {
- /// <summary>
- /// 停止机械手轴移动
- /// </summary>
- /// <param name="device"></param>
- /// <param name="module"></param>
- /// <param name="axis"></param>
- public HiwinRobotAxisStopMoveHandler(HiwinRobot device, ModuleName module)
- : base(device, "ABM")
- {
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- /// <summary>
- /// 机械手特定轴归原点
- /// </summary>
- public class HiwinRobotAxisHomeHandler : HiwinRobotHandler
- {
- /// <summary>
- /// 停止机械手轴移动
- /// </summary>
- /// <param name="device"></param>
- /// <param name="module"></param>
- /// <param name="axis"></param>
- public HiwinRobotAxisHomeHandler(HiwinRobot device, ModuleName module, string axis,int timeout=300)
- : base(device, "HOME", $"{axis}")
- {
- AckTimeout = TimeSpan.FromSeconds(timeout);
- CompleteTimeout = TimeSpan.FromSeconds(timeout);
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- /// <summary>
- /// 机械手全轴归原点
- /// </summary>
- public class HiwinRobotHomeALLHandler : HiwinRobotHandler
- {
- /// <summary>
- /// 停止机械手轴移动
- /// </summary>
- /// <param name="device"></param>
- /// <param name="module"></param>
- public HiwinRobotHomeALLHandler(HiwinRobot device, ModuleName module,int timeout=300)
- : base(device, "HOM")
- {
- AckTimeout = TimeSpan.FromSeconds(timeout);
- CompleteTimeout = TimeSpan.FromSeconds(timeout);
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- /// <summary>
- /// 设置机器晶舟站点坐标(第一组坐标)
- /// </summary>
- public class HiwinRobotSetBoatStationHandler : HiwinRobotHandler
- {
- /// <summary>
- /// 机器晶舟站点坐标
- /// </summary>
- /// <param name="device"></param>
- /// <param name="module"></param>
- /// <param name="station">A-Z,AA-AZ---GA-GZ</param>
- ///<param name="coordinateT"></param>
- ///<param name="coordinateR"></param>
- ///<param name="coordinateZ"></param>
- public HiwinRobotSetBoatStationHandler(HiwinRobot device, ModuleName module, string station, int coordinateT, int coordinateR, int coordinateZ, int coordinateH,int timeout=300)
- : base(device, "SPC", $"{station},{coordinateT},{coordinateR}{coordinateZ},{coordinateH}")
- {
- AckTimeout = TimeSpan.FromSeconds(timeout);
- CompleteTimeout = TimeSpan.FromSeconds(timeout);
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- /// <summary>
- /// 设置机器晶舟站点坐标(第一组坐标)
- /// </summary>
- public class HiwinRobotSetBoatStation2Handler : HiwinRobotHandler
- {
- /// <summary>
- /// 机器晶舟站点坐标
- /// </summary>
- /// <param name="device"></param>
- /// <param name="module"></param>
- /// <param name="station">A-Z,AA-AZ---GA-GZ</param>
- /// <param name="coordinate"></param>
- public HiwinRobotSetBoatStation2Handler(HiwinRobot device, ModuleName module, string station, int coordinateT, int coordinateR,int timeout=300)
- : base(device, "SPC2", $"{station},{coordinateT},{coordinateR}")
- {
- AckTimeout = TimeSpan.FromSeconds(timeout);
- CompleteTimeout = TimeSpan.FromSeconds(timeout);
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- /// <summary>
- /// 机器晶元扫描坐标,例如:SVON,SOOF,MOVA,MOVR
- /// </summary>
- public class HiWinScanCoordinateHandler : HiwinRobotHandler
- {
- //
- public HiWinScanCoordinateHandler(HiwinRobot device, ModuleName module, string station, int coordinateT, int coordinateR, int coordinateZ,int timeout=300)
- : base(device, "SPSC", $"{station},{coordinateT},{coordinateR},{coordinateZ}")
- {
- AckTimeout = TimeSpan.FromSeconds(timeout);
- CompleteTimeout = TimeSpan.FromSeconds(timeout);
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- public class HiwinRobotQueryWaferPresentHandler : HiwinRobotHandler
- {
- //INPUT A,1
- //0 = 有片
- //1 = 没片
- public HiwinRobotQueryWaferPresentHandler(HiwinRobot device)
- : base(device, "INPUT A,1")
- {
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- if (result.Data == "0")
- Device.IsWaferPresenceOnBlade1 = true;
- if (result.Data == "1")
- Device.IsWaferPresenceOnBlade1 = false;
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- public class HiwinRobotGetMapResultHandler : HiwinRobotHandler
- {
- //RSR
- //0100001000100000000000000 2,7,11有片
- //0122301000100000000000000 3,4斜放;5叠片
- public HiwinRobotGetMapResultHandler(HiwinRobot device)
- : base(device, "PSR")
- {
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- /// <summary>
- /// 机器晶元扫描动作,例如:MAP,a
- /// </summary>
- public class HiWinWaferScanActionHandler : HiwinRobotHandler
- {
- //
- public HiWinWaferScanActionHandler(HiwinRobot device, string station,int timeout=300)
- : base(device, "MAP", $"{station}")
- {
- AckTimeout = TimeSpan.FromSeconds(timeout);
- CompleteTimeout = TimeSpan.FromSeconds(timeout);
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- Device.MapResult = result.Data;
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- /// <summary>
- /// 机器晶元扫描移动,例如:SVON,SOOF,MOVA,MOVR
- /// </summary>
- public class HiWinScanMoveHandler : HiwinRobotHandler
- {
- //
- public HiWinScanMoveHandler(HiwinRobot device, ModuleName module, string station,int timeout=300)
- : base(device, "MAPST", $"{station}")
- {
- AckTimeout = TimeSpan.FromSeconds(timeout);
- CompleteTimeout = TimeSpan.FromSeconds(timeout);
- }
- public override bool HandleMessage(MessageBase msg, out bool handled)
- {
- var result = msg as HiwinRobotMessage;
- if (result.IsError)
- {
- Device.NoteError(result.Data);
- }
- else
- {
- Device.NoteError(null);
- }
- ResponseMessage = msg;
- handled = true;
- //Device.NoteActionCompleted();
- return true;
- }
- }
- }
|