Skip to content
切换导航条
切换导航条
当前项目
正在载入...
登录
刘韬
/
1069_MIMO_PlUS
转到一个项目
切换导航栏
切换导航栏固定状态
项目
群组
代码片段
帮助
项目
活动
版本库
流水线
图表
问题
0
合并请求
0
维基
网络
创建新的问题
作业
提交
问题看板
文件
提交
网络
比较
分支
标签
Commit 497aa127
由
张东亮
编写于
2023-10-11 10:10:01 +0800
浏览文件
选项
浏览文件
标签
下载
电子邮件补丁
差异文件
出库料盘放置异常报警功能
1 个父辈
65265329
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
16 行增加
和
7 行删除
Common/StringList.cs
DeviceLibrary/theMachine/MainMachine_String.cs
TheMachine/resources/en-US.lngres
TheMachine/resources/ja-JP.lngres
TheMachine/resources/zh-CN.lngres
Common/StringList.cs
查看文件 @
497aa12
...
...
@@ -141,6 +141,7 @@ namespace OnlineStore.Common
tray_detect_reel_01
,
system_running_cantmove
,
before_FrmPositionTool_stopmuchine
,
temp
temp
,
outstore_abnormal_reel
}
}
DeviceLibrary/theMachine/MainMachine_String.cs
查看文件 @
497aa12
...
...
@@ -203,7 +203,7 @@ namespace DeviceLibrary
case
MoveStep
.
StringLoad_04
:
StringMoveInfo
.
NextMoveStep
(
MoveStep
.
StringLoad_04b
);
//OffsetEmptyToTrayCheck 空料串到P2点与料盘定位信号补偿值
LastOutDownPosition
=
Batch_Axis
.
GetAclPosition
()
+
ConfigHelper
.
Config
.
Get
(
"OffsetEmptyToTrayCheck"
,
10
)
*
Config
.
Batch_PoToMM
;
LastOutDownPosition
=
Batch_Axis
.
GetAclPosition
()
+
ConfigHelper
.
Config
.
Get
(
"OffsetEmptyToTrayCheck"
,
10
)
*
Config
.
Batch_PoToMM
;
if
(
LastStringState
==
StringStateE
.
OutStore
)
{
StringMoveInfo
.
log
(
$
"恢复上次料串信息为出库料串"
);
...
...
@@ -385,10 +385,16 @@ namespace DeviceLibrary
StringMoveInfo
.
NextMoveStep
(
MoveStep
.
StringReelPut_05
);
var
heightcheck
=
(
LastOutDownPosition
-
Batch_Axis
.
GetAclPosition
())
/
Config
.
Batch_PoToMM
;
StringMoveInfo
.
log
(
$
"LastOutDownPosition={LastOutDownPosition},CurrentPosition={Batch_Axis.GetAclPosition()},heightcheck={heightcheck}"
);
int
height
=
StringMoveInfo
.
MoveParam
.
PlateH
+
3
;
if
(
heightcheck
<=
5
)
{
Msg
.
add
(
"出库时料盘未成功放入料串,请检查"
,
MsgLevel
.
alarm
);
RobotManage
.
UserPause
(
"出库时料盘未成功放入料串,请检查"
);
Msg
.
add
(
crc
.
GetString
(
L
.
outstore_abnormal_reel
,
"出库时料盘未成功放入料串,请检查"
),
MsgLevel
.
alarm
);
RobotManage
.
UserPause
(
crc
.
GetString
(
L
.
outstore_abnormal_reel
,
"出库时料盘未成功放入料串,请检查"
));
}
else
if
((
heightcheck
<
height
-
3
)
||
(
heightcheck
>
height
+
3
))
{
Msg
.
add
(
crc
.
GetString
(
L
.
outstore_abnormal_reel
,
"出库时料盘未成功放入料串,请检查"
),
MsgLevel
.
alarm
);
RobotManage
.
UserPause
(
crc
.
GetString
(
L
.
outstore_abnormal_reel
,
"出库时料盘未成功放入料串,请检查"
));
}
break
;
case
MoveStep
.
StringReelPut_05
:
...
...
TheMachine/resources/en-US.lngres
查看文件 @
497aa12
...
...
@@ -400,4 +400,5 @@ Res0020 升降轴位置调试: Updown-Axis Debug Location
l_flipDoor_no_work 左侧翻板水平信号未亮 The left flap horizontal signal is not lit
r_flipDoor_no_work 右侧翻板水平信号未亮 The right flap horizontal signal is not lit
reel_not_in_right_status 料盘放置异常 The reel is placed abnormally
confirm_no_reel_in_com 请确保料盘已从库位中取出 Make sure that the reel has been removed from the location
\ No newline at end of file
confirm_no_reel_in_com 请确保料盘已从库位中取出 Make sure that the reel has been removed from the location
outstore_abnormal_reel The material tray is not successfully put into the string, please check
\ No newline at end of file
TheMachine/resources/ja-JP.lngres
查看文件 @
497aa12
...
...
@@ -402,4 +402,5 @@ Res0021 请输入正确的速度 正しい速度を入力してください正
l_flipDoor_no_work 左侧翻板水平信号未亮 左フラップ水平信号が点灯していない
r_flipDoor_no_work 右侧翻板水平信号未亮 右フラップ水平信号が点灯しない
reel_not_in_right_status 料盘放置异常 リールが異常に配置されている
confirm_no_reel_in_com 请确保料盘已从库位中取出 リールがその場所から取り外されていることを確認してください
\ No newline at end of file
confirm_no_reel_in_com 请确保料盘已从库位中取出 リールがその場所から取り外されていることを確認してください
outstore_abnormal_reel 倉庫を出るとき、材料トレイがひもにうまく入れられていません、確認してください
\ No newline at end of file
TheMachine/resources/zh-CN.lngres
查看文件 @
497aa12
...
...
@@ -376,7 +376,7 @@ string_not_onposition 回原时X09,X10信号异常,料串可能不在正确位
tray_detect_reel_01 料叉传感器X30感应到有料,请人工确认 料叉传感器X30感应到有料,请人工确认
system_running_cantmove 系统正在运行,不能手动控制伺服
before_FrmPositionTool_stopmuchine 运行库位校准程序前,需要先停止料仓的运行
outstore_abnormal_reel 出库时料盘未成功放入料串,请检查
...
...
编写
预览
支持
Markdown
格式
附加文件
你添加了
0
人
到此讨论。请谨慎行事。
Finish editing this message first!
Cancel
请
注册
或
登录
后发表评论