Skip to content
切换导航条
切换导航条
当前项目
正在载入...
登录
孙克
/
RC1250-AssemblyLine
转到一个项目
切换导航栏
切换导航栏固定状态
项目
群组
代码片段
帮助
项目
活动
版本库
流水线
图表
问题
0
合并请求
0
维基
网络
创建新的问题
作业
提交
问题看板
文件
提交
网络
比较
分支
标签
Commit 04bea6bc
由
LN
编写于
2019-12-09 19:11:56 +0800
浏览文件
选项
浏览文件
标签
下载
电子邮件补丁
差异文件
横移修改
1 个父辈
066a96c2
隐藏空白字符变更
内嵌
并排
正在显示
11 个修改的文件
包含
85 行增加
和
79 行删除
source/AssemblyLineClient/App.config
source/Common/Setting_Init.cs
source/DeviceLibrary/assemblyLine/EquipBase.cs
source/DeviceLibrary/assemblyLine/FeedingEquip.cs
source/DeviceLibrary/assemblyLine/FeedingEquip_InStore.cs
source/DeviceLibrary/assemblyLine/FeedingEquip_OutStore.cs
source/DeviceLibrary/assemblyLine/LineBean_Partial.cs
source/DeviceLibrary/assemblyLine/MoveEquip_Partial.cs
source/DeviceLibrary/assemblyLine/ProvidingEquip_Partial.cs
source/DeviceLibrary/deviceLibrary/halcon/CodeManager.cs
source/DeviceLibrary/model/KTK_Store.cs
source/AssemblyLineClient/App.config
查看文件 @
04bea6b
...
...
@@ -52,6 +52,7 @@
<
add
key
=
"DebugDeviceId"
value
=
"103"
/>
<
add
key
=
"NeedScanCode"
value
=
"1"
/>
<
add
key
=
"Server_Log_Open"
value
=
"0"
/>
<
add
key
=
"CodeCount"
value
=
"1"
/>
</
appSettings
>
<
log4net
>
<
appender
name
=
"RollingLogFileAppender"
type
=
"log4net.Appender.RollingFileAppender"
>
...
...
source/Common/Setting_Init.cs
查看文件 @
04bea6b
...
...
@@ -81,6 +81,6 @@ namespace OnlineStore.Common
public
static
string
DebugDeviceId
=
"DebugDeviceId"
;
public
static
string
NeedScanCode
=
"NeedScanCode"
;
public
static
string
CodeCount
=
"CodeCount"
;
}
}
source/DeviceLibrary/assemblyLine/EquipBase.cs
查看文件 @
04bea6b
...
...
@@ -239,17 +239,7 @@ namespace OnlineStore.DeviceLibrary
//顶升气缸下降
CylinderMove
(
null
,
IO_Type
.
TopCylinder_UP
,
IO_Type
.
TopCylinder_Down
);
Thread
.
Sleep
(
30
);
}
//else if (baseConfig.DType.Equals(DeviceType.FeedingEquip))
//{
// FeedingEquip equip = (FeedingEquip)this;
// if (equip.Config.SidesWayNum <= 0)
// {
// CylinderMove(null, IO_Type.FL_TopCylinder_Up, IO_Type.FL_TopCylinder_Down);
// }
// CylinderMove(null, IO_Type.SL_MoveCylinder_Down, IO_Type.SL_MoveCylinder_Up);
//}
}
}
internal
virtual
void
CloseCylinderStop
()
{
...
...
@@ -269,19 +259,15 @@ namespace OnlineStore.DeviceLibrary
IOMove
(
IO_Type
.
TopCylinder_UP
,
IO_VALUE
.
LOW
);
IOMove
(
IO_Type
.
TopCylinder_Down
,
IO_VALUE
.
LOW
);
Thread
.
Sleep
(
30
);
}
//else if (baseConfig.DType.Equals(DeviceType.FeedingEquip))
//{
// FeedingEquip equip = (FeedingEquip)this;
// if (equip.Config.SidesWayNum <= 0)
// {
// IOMove(IO_Type.FL_TopCylinder_Up, IO_VALUE.LOW);
// IOMove(IO_Type.FL_TopCylinder_Down, IO_VALUE.LOW);
// }
// IOMove(IO_Type.SL_MoveCylinder_Down, IO_VALUE.LOW);
// IOMove(IO_Type.SL_MoveCylinder_Up, IO_VALUE.LOW);
}
}
//}
internal
bool
UpdateTrayNum
()
{
//此处先对托盘号进行验证
preTrayNum
=
currTrayNum
;
currTrayNum
=
TrayManager
.
GetTrayNum
(
DeviceID
,
true
);
return
true
;
}
#
region
伺服运动
...
...
source/DeviceLibrary/assemblyLine/FeedingEquip.cs
查看文件 @
04bea6b
...
...
@@ -378,7 +378,7 @@ namespace OnlineStore.DeviceLibrary
{
LogInfo
(
" 上升横移机构 "
);
}
CylinderMove
(
null
,
IO_Type
.
SL_MoveCylinder_Down
,
IO_Type
.
SL_MoveCylinder_Up
);
//
CylinderMove(null, IO_Type.SL_MoveCylinder_Down, IO_Type.SL_MoveCylinder_Up);
}
internal
override
void
CloseCylinderStop
()
{
...
...
@@ -430,6 +430,20 @@ namespace OnlineStore.DeviceLibrary
moveinfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitIO
(
IO_Type
.
SL_TrayLocation2_Before
,
IO_VALUE
.
LOW
));
}
}
/// <summary>
/// 升降盘是否在后退端
/// </summary>
public
bool
IsTrayLCylinderAfter
(
)
{
if
(
IOValue
(
IO_Type
.
SL_TrayLocation1_After
).
Equals
(
IO_VALUE
.
HIGH
)
&&
IOValue
(
IO_Type
.
SL_TrayLocation1_Before
).
Equals
(
IO_VALUE
.
LOW
)
&&
IOValue
(
IO_Type
.
SL_TrayLocation2_After
).
Equals
(
IO_VALUE
.
HIGH
)
&&
IOValue
(
IO_Type
.
SL_TrayLocation2_Before
).
Equals
(
IO_VALUE
.
LOW
)
)
{
return
true
;
}
return
false
;
}
/// <summary>
/// 判断上料横移机构是否可以横移运动
...
...
source/DeviceLibrary/assemblyLine/FeedingEquip_InStore.cs
查看文件 @
04bea6b
...
...
@@ -58,9 +58,12 @@ namespace OnlineStore.DeviceLibrary
bool
isNeedTray
=
(
LineManager
.
Line
.
SwNoProcess
(
Config
.
SidesWayNum
));
if
(
IOValue
(
IO_Type
.
SW_TrayCheck
).
Equals
(
IO_VALUE
.
HIGH
)
&&
(
isTestNeed
||
isNeedTray
))
{
int
num
=
TrayManager
.
GetTrayNum
(
DeviceID
);
UpdateTrayNum
();
// preTrayNum = currTrayNum;
//int num = TrayManager.GetTrayNum(DeviceID);
//currTrayNum = num;
//判断是否是需要的托盘
if
(
CurrTrayIsNeed
(
n
um
,
true
))
if
(
CurrTrayIsNeed
(
currTrayN
um
,
true
))
{
SecondMoveInfo
.
NewMove
(
LineMoveType
.
CheckFixture
,
CheckParam
);
TrayManager
.
UpdateSWState
(
Config
.
SidesWayNum
,
2
);
...
...
@@ -70,16 +73,12 @@ namespace OnlineStore.DeviceLibrary
}
else
{
preTrayNum
=
currTrayNum
;
currTrayNum
=
num
;
// currTrayNum = num;
TrayManager
.
UpdateSWState
(
Config
.
SidesWayNum
,
1
);
}
}
else
if
(
Config
.
SidesWayNum
.
Equals
(
2
)
&&
IOValue
(
IO_Type
.
SW_StopCheck
).
Equals
(
IO_VALUE
.
HIGH
)
&&
(
isTestNeed
||
isNeedTray
))
{
////判断是否是需要的托盘
//if (CurrTrayIsNeed(num, true))
//{
SecondMoveInfo
.
NewMove
(
LineMoveType
.
CheckFixture
,
CheckParam
);
TrayManager
.
UpdateSWState
(
Config
.
SidesWayNum
,
2
);
SecondMoveInfo
.
NextMoveStep
(
LineMoveStep
.
MIO_01_StopCylinder1Down
);
...
...
@@ -87,13 +86,6 @@ namespace OnlineStore.DeviceLibrary
IOMove
(
IO_Type
.
SW_StopDown
,
IO_VALUE
.
HIGH
);
// SecondMoveInfo.WaitList.Add(WaitResultInfo.WaitIO(IO_Type.SW_StopDown, IO_VALUE.LOW));
SecondMoveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitTime
(
500
));
//}
//else
//{
// preTrayNum = currTrayNum;
// currTrayNum = num;
// TrayManager.UpdateSWState(Config.SidesWayNum, 1);
//}
}
}
else
...
...
@@ -101,7 +93,6 @@ namespace OnlineStore.DeviceLibrary
if
(
IOValue
(
IO_Type
.
FL_TrayCheck
).
Equals
(
IO_VALUE
.
HIGH
)
||
IOValue
(
IO_Type
.
FL_StopCheck
).
Equals
(
IO_VALUE
.
HIGH
))
{
// int num = TrayManager.GetTrayNum(DeviceID);
//托盘在两个阻挡内
if
(
IOValue
(
IO_Type
.
FL_TrayCheck
).
Equals
(
IO_VALUE
.
HIGH
))
{
...
...
@@ -159,13 +150,6 @@ namespace OnlineStore.DeviceLibrary
SecondMoveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitIO
(
IO_Type
.
SW_TrayCheck
,
IO_VALUE
.
HIGH
));
}
}
//else if (SecondMoveInfo.MoveStep.Equals(LineMoveStep.MIO_02_FixtureCheck))
//{
// SecondMoveInfo.NextMoveStep(LineMoveStep.MIO_03_StopCylinder2Down);
// CheckLog("托盘检测:" + SecondMoveInfo.SLog + "FL阻挡1上升)");
// IOMove(IO_Type.FL_StopCylinder_Down1, IO_VALUE.LOW);
// SecondMoveInfo.WaitList.Add(WaitResultInfo.WaitIO(IO_Type.FL_StopCylinder_Down1, IO_VALUE.LOW));
//}
else
if
(
SecondMoveInfo
.
MoveStep
.
Equals
(
LineMoveStep
.
MIO_03_StopCylinder2Down
))
{
SecondMoveInfo
.
NextMoveStep
(
LineMoveStep
.
MIO_04_Wait
);
...
...
@@ -174,9 +158,9 @@ namespace OnlineStore.DeviceLibrary
}
else
if
(
SecondMoveInfo
.
MoveStep
.
Equals
(
LineMoveStep
.
MIO_04_Wait
))
{
preTrayNum
=
currTrayNum
;
currTrayNum
=
TrayManager
.
GetTrayNum
(
DeviceID
);
//
preTrayNum = currTrayNum;
//
currTrayNum = TrayManager.GetTrayNum(DeviceID);
UpdateTrayNum
();
//出料中,需要拦盘
if
(
CurrTrayIsNeed
(
currTrayNum
,
true
))
{
...
...
@@ -266,7 +250,7 @@ namespace OnlineStore.DeviceLibrary
{
//更新横移托盘已处理完成
TrayManager
.
UpdateSWState
(
Config
.
SidesWayNum
,
1
);
preTrayNum
=
currTrayNum
;
//
preTrayNum = currTrayNum;
CheckLog
(
"托盘放行: 此处为环形线横移2,顶升气缸不需要下降, (托盘放行结束) "
);
SecondMoveInfo
.
EndMove
();
}
...
...
@@ -292,7 +276,7 @@ namespace OnlineStore.DeviceLibrary
{
//更新横移托盘已处理完成
TrayManager
.
UpdateSWState
(
Config
.
SidesWayNum
,
1
);
preTrayNum
=
currTrayNum
;
//
preTrayNum = currTrayNum;
CheckLog
(
"托盘放行 SecondStoreMove:(托盘放行结束) "
);
SecondMoveInfo
.
EndMove
();
}
...
...
@@ -321,7 +305,7 @@ namespace OnlineStore.DeviceLibrary
}
else
if
(
SecondMoveInfo
.
MoveStep
.
Equals
(
LineMoveStep
.
MO_18_StopCylinder_Back
))
{
preTrayNum
=
currTrayNum
;
//
preTrayNum = currTrayNum;
CheckLog
(
"托盘放行 SecondStoreMove:(托盘放行结束) "
);
// IOMove(IO_Type.StopCylinder_Down1, IO_VALUE.HIGH);
SecondMoveInfo
.
EndMove
();
...
...
@@ -911,7 +895,7 @@ namespace OnlineStore.DeviceLibrary
if
(
Config
.
IsCanOut
.
Equals
(
1
))
{
//此托盘是紧急出料盘,需要通过料架出库
bool
debugNeed
=
IsDebug
&&
runStatus
>=
LineRunStatus
.
Runing
&&
info
.
IsFull
&&
info
.
InOrOutStore
.
Equals
(
2
);
bool
debugNeed
=
(
runStatus
>=
LineRunStatus
.
Runing
)
&&
info
.
IsFull
&&
info
.
InOrOutStore
.
Equals
(
2
);
if
(
info
.
PosId
.
Equals
(
""
))
{
param
=
new
InOutParam
(
trayNum
,
"紧急出料测试"
,
"1#AC1_3_2"
,
12
,
7
);
...
...
source/DeviceLibrary/assemblyLine/FeedingEquip_OutStore.cs
查看文件 @
04bea6b
...
...
@@ -72,9 +72,19 @@ namespace OnlineStore.DeviceLibrary
}
else
{
MoveInfo
.
NextMoveStep
(
LineMoveStep
.
FO_00_BatchAxisToP2
);
BatchAxis
.
AbsMove
(
MoveInfo
,
Config
.
BatchAxisP2
,
Config
.
BatchAxis_P2Speed
);
OutLog
(
"准备出库料架, "
+
MoveInfo
.
SLog
+
" :提升伺服先回到P2"
);
//如果升降盘在锁紧状态,需要返回P2
if
(
IsTrayLCylinderAfter
())
{
MoveInfo
.
NextMoveStep
(
LineMoveStep
.
FO_01_TrayLocation_After
);
TrayLCylinderAfter
(
MoveInfo
);
OutLog
(
"准备出库料架, "
+
MoveInfo
.
SLog
+
" :升降盘定位气缸后退"
);
}
else
{
MoveInfo
.
NextMoveStep
(
LineMoveStep
.
FO_00_BatchAxisToP2
);
BatchAxis
.
AbsMove
(
MoveInfo
,
Config
.
BatchAxisP2
,
Config
.
BatchAxis_P2Speed
);
OutLog
(
"准备出库料架,升降盘不在后退端 "
+
MoveInfo
.
SLog
+
" :提升伺服先回到P2"
);
}
}
return
true
;
}
...
...
@@ -100,7 +110,7 @@ namespace OnlineStore.DeviceLibrary
//阻挡工位有料架,流水线转动一个工位
else
if
(
IOValue
(
IO_Type
.
SL_Stop_Check
).
Equals
(
IO_VALUE
.
HIGH
))
{
MoveInfo
.
NextMoveStep
(
LineMoveStep
.
F
I
_03_LineStart
);
MoveInfo
.
NextMoveStep
(
LineMoveStep
.
F
O
_03_LineStart
);
OutLog
(
"准备出库料架: "
+
MoveInfo
.
SLog
+
" 阻挡工位检测有料架,进料阻挡下降,缓冲阻挡下降,流水线转动 1000"
);
IOMove
(
IO_Type
.
SL_Entry_StopDown
,
IO_VALUE
.
HIGH
);
IOMove
(
IO_Type
.
SL_Buffer_StopDown
,
IO_VALUE
.
LOW
);
...
...
@@ -111,7 +121,7 @@ namespace OnlineStore.DeviceLibrary
}
else
if
(
IOValue
(
IO_Type
.
SL_Entry_Check
).
Equals
(
IO_VALUE
.
HIGH
))
{
MoveInfo
.
NextMoveStep
(
LineMoveStep
.
F
I
_03_LineStart
);
MoveInfo
.
NextMoveStep
(
LineMoveStep
.
F
O
_03_LineStart
);
OutLog
(
"准备出库料架: "
+
MoveInfo
.
SLog
+
" 进料口检测有料架,进料阻挡上升,缓冲阻挡上升,流水线转动 1000"
);
IOMove
(
IO_Type
.
SL_Entry_StopDown
,
IO_VALUE
.
LOW
);
//进料阻挡上升
IOMove
(
IO_Type
.
SL_Buffer_StopDown
,
IO_VALUE
.
HIGH
);
//缓冲阻挡下降
...
...
@@ -357,12 +367,13 @@ namespace OnlineStore.DeviceLibrary
}
else
if
(
MoveInfo
.
MoveStep
.
Equals
(
LineMoveStep
.
FO_216_UpdownAxisToP1
))
{
int
trayNum
=
MoveInfo
.
MoveParam
!=
null
?
MoveInfo
.
MoveParam
.
TrayNumber
:
currTrayNum
;
MoveInfo
.
NextMoveStep
(
LineMoveStep
.
FO_217_MoveCylinder_Up
);
OutLog
(
"紧急出料移栽"
+
MoveInfo
.
SLog
+
":上料横移机构上升,更新【"
+
currT
rayNum
+
"】为空托盘"
);
OutLog
(
"紧急出料移栽"
+
MoveInfo
.
SLog
+
":上料横移机构上升,更新【"
+
t
rayNum
+
"】为空托盘"
);
CylinderMove
(
MoveInfo
,
IO_Type
.
SL_MoveCylinder_Down
,
IO_Type
.
SL_MoveCylinder_Up
);
//更新此托盘为空托盘
TrayManager
.
UpdateTrayInfo
(
currT
rayNum
,
false
);
TrayManager
.
UpdateTrayInfo
(
t
rayNum
,
false
);
SecondMoveInfo
.
NextMoveStep
(
LineMoveStep
.
MO_12_MoveOk
);
}
else
if
(
MoveInfo
.
MoveStep
.
Equals
(
LineMoveStep
.
FO_217_MoveCylinder_Up
))
...
...
source/DeviceLibrary/assemblyLine/LineBean_Partial.cs
查看文件 @
04bea6b
...
...
@@ -439,25 +439,30 @@ namespace OnlineStore.DeviceLibrary
if
(
IOValue
(
IO_Type
.
SW4_TrayCheck
).
Equals
(
IO_VALUE
.
HIGH
)
&&
IOValue
(
IO_Type
.
SW1_TrayCheck
).
Equals
(
IO_VALUE
.
LOW
)
&&
TrayManager
.
CanMoveSidesWay
(
4
)
&&
TrayManager
.
CanMoveSidesWay
(
1
))
{
TimeSpan
span
12
=
DateTime
.
Now
-
SideWay41Ntime
;
if
(
SideWay41IsWait
&&
span
12
.
TotalMilliseconds
>
TraySingleWaitTime
)
TimeSpan
span
41
=
DateTime
.
Now
-
SideWay41Ntime
;
if
(
SideWay41IsWait
&&
span
41
.
TotalMilliseconds
>
TraySingleWaitTime
)
{
SW41_MoveInfo
.
NewMove
(
LineMoveType
.
InStore
);
SW41_MoveInfo
.
NextMoveStep
(
LineMoveStep
.
SW02_WaitFixtureCheck
);
UpateSw41TrayNum
();
SWLog
(
"横移轨道41:
定位气缸下降, 等待横移4托盘检测信号,更新托盘号 ["
+
Sw41TrayNum
+
"] "
);
SWLog
(
"横移轨道41:
检测到SW4_TrayCheck,定位气缸下降, 等待横移4托盘检测信号,更新托盘号 ["
+
Sw41TrayNum
+
"] "
);
SW41_MoveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitIO
(
IO_Type
.
SW4_TrayCheck
,
IO_VALUE
.
HIGH
));
CylinderMove
(
SW41_MoveInfo
,
IO_Type
.
SW4_LocationCylinder_Up
,
IO_Type
.
SW4_LocationCylinder_Down
);
CylinderMove
(
SW41_MoveInfo
,
IO_Type
.
SW1_LocationCylinder_Up
,
IO_Type
.
SW1_LocationCylinder_Down
);
}
else
if
(!
SideWay41IsWait
)
{
SideWay41IsWait
=
true
;
SideWay41Ntime
=
DateTime
.
Now
;
}
}
else
if
(
IOValue
(
IO_Type
.
SW4_StopCheck
).
Equals
(
IO_VALUE
.
HIGH
)
&&
IOValue
(
IO_Type
.
SW4_TrayCheck
).
Equals
(
IO_VALUE
.
LOW
)
&&
IOValue
(
IO_Type
.
SW1_TrayCheck
).
Equals
(
IO_VALUE
.
LOW
)
&&
TrayManager
.
CanMoveSidesWay
(
4
)
&&
TrayManager
.
CanMoveSidesWay
(
1
))
{
TimeSpan
span
14
=
DateTime
.
Now
-
SideWay41Ntime
;
if
(
SideWay41IsWait
&&
span
14
.
TotalMilliseconds
>
TraySingleWaitTime
)
TimeSpan
span
41
=
DateTime
.
Now
-
SideWay41Ntime
;
if
(
SideWay41IsWait
&&
span
41
.
TotalMilliseconds
>
TraySingleWaitTime
)
{
SW41_MoveInfo
.
NewMove
(
LineMoveType
.
InStore
);
SW41_MoveInfo
.
NextMoveStep
(
LineMoveStep
.
SW00_Wait
);
...
...
@@ -500,7 +505,7 @@ namespace OnlineStore.DeviceLibrary
SW23_MoveInfo
.
NewMove
(
LineMoveType
.
InStore
);
SW23_MoveInfo
.
NextMoveStep
(
LineMoveStep
.
SW02_WaitFixtureCheck
);
UpateSw23TrayNum
();
SWLog
(
"横移轨道23:
定位气缸下降, 等待横移2拖盘检测信号
,更新托盘号 ["
+
Sw23TrayNum
+
"] "
);
SWLog
(
"横移轨道23:
检测到SW2_TrayCheck,定位气缸下降,等待横移2托盘检测信号
,更新托盘号 ["
+
Sw23TrayNum
+
"] "
);
SW23_MoveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitIO
(
IO_Type
.
SW2_TrayCheck
,
IO_VALUE
.
HIGH
));
CylinderMove
(
SW23_MoveInfo
,
IO_Type
.
SW2_LocationCylinder_Up
,
IO_Type
.
SW3_LocationCylinder_Down
);
CylinderMove
(
SW23_MoveInfo
,
IO_Type
.
SW2_LocationCylinder_Up
,
IO_Type
.
SW3_LocationCylinder_Down
);
...
...
@@ -520,7 +525,7 @@ namespace OnlineStore.DeviceLibrary
if
(
SideWay23IsWait
&&
span34
.
TotalMilliseconds
>
TraySingleWaitTime
)
{
SW23_MoveInfo
.
NewMove
(
LineMoveType
.
InStore
);
SW23_MoveInfo
.
NextMoveStep
(
LineMoveStep
.
SW0
1_StopDown
);
SW23_MoveInfo
.
NextMoveStep
(
LineMoveStep
.
SW0
0_Wait
);
UpateSw23TrayNum
();
SWLog
(
"横移轨道23:检测到SW2_StopCheck, 定位气缸下降 ,更新托盘号 ["
+
Sw23TrayNum
+
"] "
);
CylinderMove
(
SW23_MoveInfo
,
IO_Type
.
SW2_LocationCylinder_Up
,
IO_Type
.
SW2_LocationCylinder_Down
);
...
...
@@ -595,7 +600,7 @@ namespace OnlineStore.DeviceLibrary
}
if
(
SW41_MoveInfo
.
MoveStep
.
Equals
(
LineMoveStep
.
SW00_Wait
))
{
SW41_MoveInfo
.
NextMoveStep
(
LineMoveStep
.
SW01_StopDown
);
SW41_MoveInfo
.
NextMoveStep
(
LineMoveStep
.
SW01_StopDown
);
SWLog
(
"横移轨道41: 阻挡气缸下降 等待 "
+
TrayManager
.
StopDownWaitTime
);
IOMove
(
IO_Type
.
SW4_StopDown
,
IO_VALUE
.
HIGH
);
SW41_MoveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitTime
(
TrayManager
.
StopDownWaitTime
));
...
...
source/DeviceLibrary/assemblyLine/MoveEquip_Partial.cs
查看文件 @
04bea6b
...
...
@@ -472,8 +472,9 @@ namespace OnlineStore.DeviceLibrary
//判断是否需要顶升
bool
isNeed
=
false
;
//此处先对托盘号进行验证
preTrayNum
=
currTrayNum
;
currTrayNum
=
TrayManager
.
GetTrayNum
(
DeviceID
,
true
);
//preTrayNum = currTrayNum;
//currTrayNum = TrayManager.GetTrayNum(DeviceID,true);
UpdateTrayNum
();
bool
isFull
=
TrayManager
.
TrayIsFull
(
currTrayNum
);
if
(
TrayManager
.
RightTrayCode
(
currTrayNum
,
preTrayNum
,
false
))
{
...
...
@@ -613,8 +614,7 @@ namespace OnlineStore.DeviceLibrary
SecondMoveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitTime
(
200
));
}
else
if
(
SecondMoveInfo
.
MoveStep
.
Equals
(
LineMoveStep
.
MO_18_StopCylinder_Back
))
{
preTrayNum
=
currTrayNum
;
{
CheckLog
(
"托盘放行 SecondMove:(托盘放行结束) "
);
// IOMove(IO_Type.StopCylinder_Down1, IO_VALUE.HIGH);
SecondMoveInfo
.
EndMove
();
...
...
source/DeviceLibrary/assemblyLine/ProvidingEquip_Partial.cs
查看文件 @
04bea6b
...
...
@@ -103,8 +103,9 @@ namespace OnlineStore.DeviceLibrary
else
if
(
SecondMoveInfo
.
MoveStep
.
Equals
(
LineMoveStep
.
MIO_04_Wait
))
{
//此处先对托盘号进行验证
preTrayNum
=
currTrayNum
;
currTrayNum
=
TrayManager
.
GetTrayNum
(
DeviceID
,
true
);
//preTrayNum = currTrayNum;
//currTrayNum = TrayManager.GetTrayNum(DeviceID,true);
UpdateTrayNum
();
if
(
TrayManager
.
RightTrayCode
(
currTrayNum
,
preTrayNum
,
false
))
{
if
(
TrayManager
.
ErrorDeviceId
.
Equals
(
DeviceID
))
...
...
@@ -199,7 +200,7 @@ namespace OnlineStore.DeviceLibrary
}
else
if
(
SecondMoveInfo
.
MoveStep
.
Equals
(
LineMoveStep
.
MO_18_StopCylinder_Back
))
{
preTrayNum
=
currTrayNum
;
//
preTrayNum = currTrayNum;
CheckLog
(
"托盘放行 SecondMove:(托盘放行结束) "
);
// IOMove(IO_Type.StopCylinder_Down1, IO_VALUE.HIGH);
SecondMoveInfo
.
EndMove
();
...
...
source/DeviceLibrary/deviceLibrary/halcon/CodeManager.cs
查看文件 @
04bea6b
...
...
@@ -147,10 +147,14 @@ namespace OnlineStore.DeviceLibrary
}
return
bitm
;
}
private
static
int
codeCount
=
ConfigAppSettings
.
GetIntValue
(
Setting_Init
.
CodeCount
);
[
HandleProcessCorruptedStateExceptions
]
public
static
List
<
string
>
CameraScan
(
List
<
string
>
cameraNameList
=
null
)
{
if
(
codeCount
<
1
)
{
codeCount
=
1
;
}
List
<
string
>
codeList
=
new
List
<
string
>();
//List<CodeInfo> allCodeList = new List<CodeInfo>();
if
(
cameraNameList
==
null
)
...
...
@@ -184,7 +188,7 @@ namespace OnlineStore.DeviceLibrary
}
else
{
cc
=
HDCodeHelper
.
DecodeCode
(
ho_Image
,
1
,
GetCodeParamFilePath
(
codeType
),
codeType
);
cc
=
HDCodeHelper
.
DecodeCode
(
ho_Image
,
codeCount
,
GetCodeParamFilePath
(
codeType
),
codeType
);
}
//if (cc.Count > 0)
//{
...
...
source/DeviceLibrary/model/KTK_Store.cs
查看文件 @
04bea6b
...
...
@@ -363,7 +363,7 @@ namespace OnlineStore.DeviceLibrary
return
;
}
}
if
(
isCheckMove
||
moveInfo
==
null
)
if
(
isCheckMove
)
{
CheckAndMove
(
IoLowType
,
IO_VALUE
.
LOW
);
CheckAndMove
(
IoHighType
,
IO_VALUE
.
HIGH
);
...
...
编写
预览
支持
Markdown
格式
附加文件
你添加了
0
人
到此讨论。请谨慎行事。
Finish editing this message first!
Cancel
请
注册
或
登录
后发表评论