영문화완료

This commit is contained in:
ChiKyun Kim
2025-09-09 17:24:19 +09:00
parent adb66451ca
commit 02028afc27
338 changed files with 2205 additions and 79829 deletions

View File

@@ -183,7 +183,7 @@ namespace Project
PUB.dio.SetInputSensitivity(GetPinTerminal(eDIName.DOORR2), AR.SETTING.Data.SaftyDetectFall, AR.SETTING.Data.SaftyDetectRise);
PUB.dio.SetInputSensitivity(GetPinTerminal(eDIName.DOORR3), AR.SETTING.Data.SaftyDetectFall, AR.SETTING.Data.SaftyDetectRise);
PUB.log.AddAT("DIO 센서 감도 설정");
PUB.log.AddAT("DIO Sensor Sensitivity Setting");
}
@@ -545,7 +545,7 @@ namespace Project
public static bool GetPortMotorRun(int index)
{
if (PUB.dio == null || !PUB.dio.IsInit) return false;
if (index < 0 || index > 3) throw new Exception("포트번호는 (0~2) 사이로 입력되어야 함");
if (index < 0 || index > 3) throw new Exception("Port number must be entered between (0~2)");
Boolean b1 = false;
@@ -561,7 +561,7 @@ namespace Project
public static eMotDir GetPortMotorDir(int index)
{
if (PUB.dio == null || !PUB.dio.IsInit) return eMotDir.CW;
if (index < 0 || index > 3) throw new Exception("포트번호는 (0~2) 사이로 입력되어야 함");
if (index < 0 || index > 3) throw new Exception("Port number must be entered between (0~2)");
Boolean b1 = false;
@@ -636,12 +636,12 @@ namespace Project
//켜야하는 상황인데.. 리밋이 걸렸다면 처리하지 않는다
if (Dir == eMotDir.CW && DIO.GetIOInput(pin_limp) == true)
{
PUB.log.AddI(string.Format("포트({0})번의 출력을 무시합니다(LIMIT_UP) 방향:{1}", index, Dir));
PUB.log.AddI(string.Format("Ignoring output for port({0}) (LIMIT_UP) direction:{1}", index, Dir));
b1 = true;
}
else if (Dir == eMotDir.CCW && DIO.GetIOInput(pin_limn) == true)
{
PUB.log.AddI(string.Format("포트({0})번의 출력을 무시합니다(LIMIT_DN) 방향:{1}", index, Dir));
PUB.log.AddI(string.Format("Ignoring output for port({0}) (LIMIT_DN) direction:{1}", index, Dir));
b1 = true;
}
else
@@ -822,7 +822,7 @@ namespace Project
if (PUB.flag.get(eVarBool.FG_PK_ITEMON) == true)
{
PUB.flag.set(eVarBool.FG_PK_ITEMON, false, "VACOFF");
PUB.logDbg.AddI("피커 아이템플래그 제거");
PUB.logDbg.AddI("Picker item flag removed");
}
@@ -892,7 +892,7 @@ namespace Project
if (ON)
{
if (SETTING.Data.Disable_Buzzer == true && force == false) return true; //부저기능OFF시 사용 안함
if (SETTING.Data.Disable_Buzzer == true && force == false) return true; //Not used when buzzer function is OFF
}
if (ON && SETTING.Data.Disable_Buzzer == true && force == false)