Commit b8691c9e LN

进仓出库取料时,前后气缸前进后等待500毫秒再下降

1 个父辈 6ea04fe4
......@@ -277,6 +277,11 @@ namespace OnlineStore.DeviceLibrary
}
else if (MoveInfo.IsStep(LineMoveStep.MO_51_CylinderBefore))
{
MoveInfo.NextMoveStep(LineMoveStep.MO_52_WaitTime);
OutLog("出库 " + MoveInfo.MoveStep + ": 等待500毫秒再下降");
MoveInfo.WaitList.Add(WaitResultInfo.WaitTime(500));
}
else if (MoveInfo.IsStep(LineMoveStep.MO_52_WaitTime)) {
//重置夹料次数=0
ClampCount = 0;
if (CylinderIsOk(IO_Type.BeforeAfterCylinder_After, IO_Type.BeforeAfterCylinder_Before))
......
......@@ -311,6 +311,11 @@ namespace OnlineStore.DeviceLibrary
/// 移栽装置出库处理。。前后气缸1前进
/// </summary>
MO_51_CylinderBefore,
/// <summary>
/// 移栽装置出库处理。。等待500毫秒在下降
/// </summary>
MO_52_WaitTime,
/// <summary>
/// 移栽装置出库处理。上下气缸1下降
/// </summary>
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!