This commit is contained in:
liyaobang 2025-03-24 18:22:03 +08:00
commit 33c2994455
2 changed files with 13 additions and 6 deletions

View File

@ -55,10 +55,11 @@ namespace DH.Devices.PLC
if (ret.IsSuccess)
{
Connected = true;
CountToZero();
TcpNet.Write("M122", true);
MonitorPieces();
TurntableOpen(Convert.ToInt32(itemSpeed.Value) , true);
TurntableStop();
return true;
}
else

View File

@ -696,9 +696,15 @@ namespace DHSoftware
// 转盘操作
// if (_PLC?.IIConfig?.IsEnabled == true)
// if (_PLC?.IIConfig?.IsEnabled == true)
// _PLC.TurntableOpen(XKRSPLCConfig.TurnSpeed, XKRSPLCConfig.TurnDirection);
// _PLC.TurntableOpen(XKRSPLCConfig.TurnSpeed, XKRSPLCConfig.TurnDirection);
PLCItem itemSpeed = PLC.PLCItemList.FirstOrDefault(u => u.Name == "转盘速度");
if (itemSpeed != null)
{
PLC.TurntableOpen(Convert.ToInt32(itemSpeed.Value), true);
}
Thread.Sleep(500);
@ -1445,7 +1451,7 @@ namespace DHSoftware
Cameras.Clear();
Dectection.Clear();
// Add the code for the "停止" button click here
// PLC.TurntableStop();
PLC.TurntableStop();
CurrentMachine = true;
sLDMotion.Stop();
}