Skip to content
切换导航条
切换导航条
当前项目
正在载入...
登录
李娜
/
SO827-AssemblyLine
转到一个项目
切换导航栏
切换导航栏固定状态
项目
群组
代码片段
帮助
项目
活动
版本库
图表
网络
创建新的问题
提交
问题看板
文件
提交
网络
比较
分支
标签
Commit fd9e193e
由
LN
编写于
2021-03-24 09:11:53 +0800
浏览文件
选项
浏览文件
标签
下载
电子邮件补丁
差异文件
bug修改
1 个父辈
38617346
显示空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
22 行增加
和
2 行删除
dll/eyemLib.dll
dll/libdmtx.dll
source/DeviceLibrary/assemblyLine/EquipBase.cs
source/DeviceLibrary/assemblyLine/FeedingEquip.cs
source/DeviceLibrary/assemblyLine/MoveEquip.cs
dll/eyemLib.dll
查看文件 @
fd9e193
此文件类型无法预览
dll/libdmtx.dll
查看文件 @
fd9e193
此文件类型无法预览
source/DeviceLibrary/assemblyLine/EquipBase.cs
查看文件 @
fd9e193
...
@@ -13,6 +13,7 @@ namespace OnlineStore.DeviceLibrary
...
@@ -13,6 +13,7 @@ namespace OnlineStore.DeviceLibrary
{
{
public
abstract
class
EquipBase
:
KTK_Store
public
abstract
class
EquipBase
:
KTK_Store
{
{
public
ClampJawBean
ClampJwa
=
null
;
public
bool
MoveStop
=
false
;
public
bool
MoveStop
=
false
;
public
string
CurrShelfId
=
""
;
//当前的料架ID
public
string
CurrShelfId
=
""
;
//当前的料架ID
...
@@ -552,6 +553,25 @@ namespace OnlineStore.DeviceLibrary
...
@@ -552,6 +553,25 @@ namespace OnlineStore.DeviceLibrary
else
if
(
wait
.
WaitType
.
Equals
(
WaitEnum
.
W003_Time
))
else
if
(
wait
.
WaitType
.
Equals
(
WaitEnum
.
W003_Time
))
{
{
wait
.
IsEnd
=
(
span
.
TotalMilliseconds
>=
wait
.
TimeMSeconds
);
wait
.
IsEnd
=
(
span
.
TotalMilliseconds
>=
wait
.
TimeMSeconds
);
}
else
if
(
wait
.
WaitType
.
Equals
(
WaitEnum
.
W004_ClampReached
))
{
if
(
ClampJwa
!=
null
)
{
if
(
ClampJwa
.
IsReached
())
{
float
currp
=
ClampJwa
.
GetPosition
()
-(
float
)
wait
.
TargetPosition
;
if
(
currp
<
1
)
{
wait
.
IsEnd
=
true
;
}
}
}
}
else
if
(
wait
.
WaitType
.
Equals
(
WaitEnum
.
W005_WaitHasReel
))
{
if
(
ClampJwa
!=
null
)
{
wait
.
IsEnd
=
ClampJwa
.
HasReel
();
}
}
}
else
if
(
wait
.
WaitType
.
Equals
(
WaitEnum
.
W008_InStoreCheckOK
))
else
if
(
wait
.
WaitType
.
Equals
(
WaitEnum
.
W008_InStoreCheckOK
))
{
{
...
...
source/DeviceLibrary/assemblyLine/FeedingEquip.cs
查看文件 @
fd9e193
...
@@ -21,7 +21,7 @@ namespace OnlineStore.DeviceLibrary
...
@@ -21,7 +21,7 @@ namespace OnlineStore.DeviceLibrary
public
bool
OutEndSendShelfOut
=
false
;
public
bool
OutEndSendShelfOut
=
false
;
public
AxisBean
BatchAxis
=
null
;
public
AxisBean
BatchAxis
=
null
;
public
bool
HasOutLine
=
false
;
//是否有出料线体,T3和T4
public
bool
HasOutLine
=
false
;
//是否有出料线体,T3和T4
public
ClampJawBean
ClampJwa
=
null
;
public
FeedingEquip
(
string
cid
,
FeedingEquip_Config
config
,
ConfigClampJaw
jawconfig
)
public
FeedingEquip
(
string
cid
,
FeedingEquip_Config
config
,
ConfigClampJaw
jawconfig
)
{
{
this
.
DeviceID
=
config
.
Id
;
this
.
DeviceID
=
config
.
Id
;
...
...
source/DeviceLibrary/assemblyLine/MoveEquip.cs
查看文件 @
fd9e193
...
@@ -13,7 +13,7 @@ namespace OnlineStore.DeviceLibrary
...
@@ -13,7 +13,7 @@ namespace OnlineStore.DeviceLibrary
public
partial
class
MoveEquip
:
EquipBase
public
partial
class
MoveEquip
:
EquipBase
{
{
public
MoveEquip_Config
Config
;
public
MoveEquip_Config
Config
;
public
ClampJawBean
ClampJwa
=
null
;
//
public ClampJawBean ClampJwa = null;
public
bool
OnlyProOutTray
=
false
;
public
bool
OnlyProOutTray
=
false
;
public
MoveEquip
(
string
cid
,
MoveEquip_Config
config
,
ConfigClampJaw
jawconfig
)
public
MoveEquip
(
string
cid
,
MoveEquip_Config
config
,
ConfigClampJaw
jawconfig
)
{
{
...
...
编写
预览
支持
Markdown
格式
附加文件
你添加了
0
人
到此讨论。请谨慎行事。
Finish editing this message first!
Cancel
请
注册
或
登录
后发表评论