Commit 59a5ec4b 刘韬

1

1 个父辈 8d1d40bd
......@@ -332,7 +332,7 @@ Res0056 可能与贴标Z轴干涉 It might interfere with relabeling Z-axis.
Res0057 用户暂停 Pause
Res0058 安全光栅被遮挡 Safety Light Curtain is covered.
Res0059 入口料串已空,等待取走料串 Please take away the empty right stacker.
Res0060 侧料串已满,等待取走料串 Please take away the full left stacker.
Res0060 侧料串已满,等待取走料串 Please take away the full left stacker.
Res0061 [已忽略] [Ignored]
Res0062 没有检测到NG料箱 No NG box.
Res0063 没有检测打印机 No printer.
......
......@@ -332,7 +332,7 @@ Res0056 可能与贴标Z轴干涉 ラベル貼付Z軸と干渉可能
Res0057 用户暂停 ユーザー停止
Res0058 安全光栅被遮挡 ライトカーテンが被られました。
Res0059 入口料串已空,等待取走料串 空き入り口リール運搬ユニットを取ってください。
Res0060 侧料串已满,等待取走料串 満載出口リール運搬ユニットを取ってください。
Res0060 侧料串已满,等待取走料串 満載出口リール運搬ユニットを取ってください。
Res0061 [已忽略] [無視]
Res0062 没有检测到NG料箱 NGビンが検出されていません。
Res0063 没有检测打印机 プリンターが検出されていません。
......
......@@ -332,7 +332,7 @@ Res0056 可能与贴标Z轴干涉 可能与贴标Z轴干涉
Res0057 用户暂停 用户暂停
Res0058 安全光栅被遮挡 安全光栅被遮挡
Res0059 入口料串已空,等待取走料串 入口料串已空,等待取走料串
Res0060 作侧料串已满,等待取走料串 作侧料串已满,等待取走料串
Res0060 左侧料串已满,等待取走料串 左侧料串已满,等待取走料串
Res0061 [已忽略] [已忽略]
Res0062 没有检测到NG料箱 没有检测到NG料箱
Res0063 没有检测打印机 没有检测打印机
......
......@@ -55,7 +55,7 @@ namespace DeviceLibrary
//左侧料串已满
if (LeftMoveInfo.IsStep(MoveStep.Wait) && IOValue(IO_Type.LeftEnd_Check).Equals(IO_VALUE.HIGH) && LeftShelfNoTray)
{
Msg.add(crc.GetString("Res0060","侧料串已满,等待取走料串"), MsgLevel.warning);
Msg.add(crc.GetString("Res0060","侧料串已满,等待取走料串"), MsgLevel.warning);
}
}
}
......
......@@ -129,7 +129,7 @@ namespace DeviceLibrary
LeftMoveInfo.NextMoveStep(MoveStep.L53);
IOMove(IO_Type.LeftMoto_Run, IO_VALUE.LOW);
IOMove(IO_Type.LeftMoto_Reverse, IO_VALUE.HIGH);
MiddleMoveInfo.WaitList.Add(WaitResultInfo.WaitIO(IO_Type.LeftEnd_Check, IO_VALUE.LOW));
LeftMoveInfo.WaitList.Add(WaitResultInfo.WaitIO(IO_Type.LeftEnd_Check, IO_VALUE.LOW));
LeftMoveInfo.WaitList.Add(WaitResultInfo.WaitTime(3000));
LeftMoveInfo.log($"电滚筒向外滚动");
break;
......@@ -163,7 +163,7 @@ namespace DeviceLibrary
LeftMoveInfo.NextMoveStep(MoveStep.L63);
IOMove(IO_Type.LeftMoto_Reverse, IO_VALUE.LOW);
IOMove(IO_Type.LeftMoto_Run, IO_VALUE.HIGH);
MiddleMoveInfo.WaitList.Add(WaitResultInfo.WaitIO(IO_Type.LeftEnd_Check, IO_VALUE.HIGH));
LeftMoveInfo.WaitList.Add(WaitResultInfo.WaitIO(IO_Type.LeftEnd_Check, IO_VALUE.HIGH));
LeftMoveInfo.WaitList.Add(WaitResultInfo.WaitTime(60000));
LeftMoveInfo.OneWaitCanEndStep = true;
LeftMoveInfo.log($"等待料串到位");
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!