This commit is contained in:
ChiKyun Kim
2025-09-23 15:41:16 +09:00
parent 02028afc27
commit b037dd53e6
74 changed files with 4269 additions and 7917 deletions

View File

@@ -135,7 +135,6 @@ namespace Project
var modelName = PUB.Result.vModel.Title;
PUB.Result.BCDPattern = PUB.GetPatterns(modelName, false);
PUB.Result.BCDIgnorePattern = PUB.GetPatterns(modelName, true);
PUB.Result.BCDPrintPattern = PUB.GetPrintPatterns();
PUB.log.Add($"Model pattern loading: {PUB.Result.BCDPattern.Count}/{PUB.Result.BCDIgnorePattern.Count}");
//변환SID SID확인여부데이터 삭제

View File

@@ -160,8 +160,10 @@ namespace Project
//바코드설정업데이트
if (systembypassmode == false)
{
var k1 = PUB.UpLoadBarcodeConfig(PUB.keyenceF);
var k2 = PUB.UpLoadBarcodeConfig(PUB.keyenceR);
bool k1, k2;
k1 = PUB.MemLoadBarcodeConfig(PUB.keyenceF);
k2 = PUB.MemLoadBarcodeConfig(PUB.keyenceR);
if (k1 == false && k2 == false) //결과확인하도록함 230511
{
PUB.Result.SetResultMessage(eResult.HARDWARE, eECode.CONFIG_KEYENCE, eNextStep.ERROR);

View File

@@ -5,7 +5,6 @@ using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using System.Security.Cryptography;
using System.Text;
using System.Web.UI.WebControls;
using AR;
using Chilkat;

View File

@@ -3,7 +3,6 @@ using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Security.Cryptography;
using System.ServiceModel.Configuration;
using System.Text;
using AR;
using Project.Class;

View File

@@ -68,7 +68,7 @@ namespace Project
//####################################################
if (PUB.sm.seq.Get(cmdIndex) == idx++)
{
PUB.log.Add($"[{target}] 프린트 ON 작업 시작");
PUB.log.Add($"[{target}] Print ON operation started");
PUB.sm.seq.Update(cmdIndex);
return false;
}

View File

@@ -393,7 +393,7 @@ namespace Project
VAR.DBL[eVarDBL.RIGT_ITEM_PICKOFF] = 0;
VAR.I32[eVarInt32.RIGT_ITEM_COUNT] += 1;
}
PUB.log.Add($"[{target}] 릴을 내려놓습니다");
PUB.log.Add($"[{target}] Placing reel down");
PUB.sm.seq.Update(cmdIndex);

View File

@@ -171,7 +171,7 @@ namespace Project
}
DIO.SetPortMotor(idx, eMotDir.CCW, true, "얼라인(DN)");
PUB.log.Add("PORT", "포트를 강제로 하강 합니다");
PUB.log.Add("PORT", "Force port to descend");
}
//자재가 감지되면 시간을 다시 초기화해서 충분히 내려가도록 한다 210402
@@ -211,7 +211,7 @@ namespace Project
}
DIO.SetPortMotor(idx, eMotDir.CW, true, "MOT_PORT");
PUB.log.Add("PORT", "강제 상승(9에서 멈춰있음)");
PUB.log.Add("PORT", "Force ascend (stopped at position 9)");
}
}
}