Skip to content
切换导航条
切换导航条
当前项目
正在载入...
登录
李娜
/
SO908-XLRStore
转到一个项目
切换导航栏
切换导航栏固定状态
项目
群组
代码片段
帮助
项目
活动
版本库
流水线
图表
问题
0
合并请求
0
维基
网络
创建新的问题
作业
提交
问题看板
文件
提交
网络
比较
分支
标签
Commit 1a20f1b1
由
LN
编写于
2022-03-28 10:14:29 +0800
浏览文件
选项
浏览文件
标签
下载
电子邮件补丁
差异文件
扫码点配置改为可选
1 个父辈
2a72a60e
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
9 行增加
和
4 行删除
source/DeviceLibrary/storeBean/inputBean/InputEquip.cs
source/LoadCVSLibrary/storeConfig/config/InputEquip_Config.cs
source/DeviceLibrary/storeBean/inputBean/InputEquip.cs
查看文件 @
1a20f1b
...
...
@@ -32,11 +32,16 @@ namespace OnlineStore.DeviceLibrary
public
InputEquip
(
string
cid
,
InputEquip_Config
config
)
{
Name
=
(
" "
+
"上料机构"
+
" "
).
ToUpper
();
if
(
config
.
BatchAxis_P4Speed
<=
0
)
{
config
.
BatchAxis_P4Speed
=
config
.
BatchAxis_P2Speed
;
LogUtil
.
info
(
Name
+
"未配置 BatchAxis_P4Speed,使用 BatchAxis_P2Speed 的值"
+
config
.
BatchAxis_P2Speed
);
}
this
.
DeviceID
=
config
.
Id
;
baseConfig
=
config
;
this
.
Config
=
config
;
IsDebug
=
config
.
IsDebug
.
Equals
(
1
);
Name
=
(
" "
+
"上料机构"
+
" "
).
ToUpper
();
Init
();
ledProcessTimer
.
Elapsed
+=
LedProcess
;
IoCheckTimer
.
Elapsed
+=
IoCheckTimerProcess
;
...
...
source/LoadCVSLibrary/storeConfig/config/InputEquip_Config.cs
查看文件 @
1a20f1b
...
...
@@ -350,17 +350,17 @@ namespace OnlineStore.LoadCSVLibrary
/// <summary>
/// PRO,0,提升轴上料扫码点_A侧,BatchAxisP4_A,0,,,,,,,,,,,,
/// </summary>
[
ConfigProAttribute
(
"BatchAxisP4_A"
)]
[
ConfigProAttribute
(
"BatchAxisP4_A"
,
false
)]
public
int
BatchAxisP4_A
{
get
;
set
;
}
/// <summary>
/// PRO,0,提升轴上料扫码点_B侧,BatchAxisP4_B,0,,,,,,,,,,,,
/// </summary>
[
ConfigProAttribute
(
"BatchAxisP4_B"
)]
[
ConfigProAttribute
(
"BatchAxisP4_B"
,
false
)]
public
int
BatchAxisP4_B
{
get
;
set
;
}
/// <summary>
/// PRO,0,提升上料轴P4速度/运动到扫码点速度,BatchAxis_P4Speed,5000,,,,,,,,,,,,
/// </summary>
[
ConfigProAttribute
(
"BatchAxis_P4Speed"
)]
[
ConfigProAttribute
(
"BatchAxis_P4Speed"
,
false
)]
public
int
BatchAxis_P4Speed
{
get
;
set
;
}
private
List
<
string
>
CameraList
=
null
;
...
...
编写
预览
支持
Markdown
格式
附加文件
你添加了
0
人
到此讨论。请谨慎行事。
Finish editing this message first!
Cancel
请
注册
或
登录
后发表评论