영문화완료
This commit is contained in:
@@ -14,28 +14,28 @@ namespace Project
|
||||
if (PUB.sm.Step == eSMStep.RUN)
|
||||
{
|
||||
//아무것도 하지 않는다
|
||||
PUB.log.Add("동작중에는 START 버튼이 사용되지 않습니다");
|
||||
PUB.log.Add("START button is not available during operation");
|
||||
}
|
||||
else if (PUB.sm.Step == eSMStep.IDLE) //일반대기상태
|
||||
{
|
||||
if (DIO.isVacOKL() > 0)
|
||||
{
|
||||
DIO.SetBuzzer(true);
|
||||
PUB.popup.setMessage("PICKER ITEM DETECT\nPICKER 에서 아이템이 감지되었습니다\n[작업취소] 를 눌러서 아이템을 DROP 한 후 제거해주세요.");
|
||||
PUB.popup.setMessage("PICKER ITEM DETECT\nItem detected in PICKER\nPress [Cancel Work] to DROP item and remove it.");
|
||||
return;
|
||||
}
|
||||
else if (DIO.getCartSize(1) == eCartSize.None)
|
||||
{
|
||||
DIO.SetBuzzer(true);
|
||||
PUB.popup.setMessage("로더에 카트가 장착되지 않았습니다");
|
||||
PUB.popup.setMessage("Cart is not installed in loader");
|
||||
return;
|
||||
}
|
||||
else if (DIO.GetIOInput(eDIName.PORTC_LIM_DN) == true && DIO.GetIOInput(eDIName.PORTC_DET_UP) == true)
|
||||
{
|
||||
//하단리밋과, 자재감지가 동시에 들어오면 overload 이다
|
||||
DIO.SetBuzzer(true);
|
||||
PUB.popup.setMessage("로더에 너무 많은 릴이 적재 되어 있습니다\n" +
|
||||
"하단 리밋 센서와 상단 릴 감지 센서가 동시에 확인 됩니다");
|
||||
PUB.popup.setMessage("Too many reels are loaded in the loader\n" +
|
||||
"Bottom limit sensor and top reel detection sensor are both active");
|
||||
return;
|
||||
}
|
||||
//else if (Util_DO.getCartSize(0) == eCartSize.None && Util_DO.getCartSize(2) == eCartSize.None)
|
||||
@@ -68,14 +68,14 @@ namespace Project
|
||||
//팝업메세지가 사라지도록 한다
|
||||
PUB.popup.needClose = true;
|
||||
PUB.sm.SetNewStep(eSMStep.RUN);
|
||||
PUB.log.Add("[사용자 일시정지] 해제 => 작업이 계속됩니다");
|
||||
PUB.log.Add("[User pause] released => Work continues");
|
||||
}
|
||||
else
|
||||
{
|
||||
//string msg = "SYSTEM {0}\n[RESET] 버튼을 누른 후 다시 시도하세요";
|
||||
//msg = string.Format(msg, PUB.sm.Step);
|
||||
//PUB.popup.setMessage(msg);
|
||||
PUB.log.AddE($"[RESET] 버튼을 누른 후 다시 시도하세요");
|
||||
PUB.log.AddE($"Press [RESET] button and try again");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ namespace Project
|
||||
{
|
||||
//일시중지상태로 전환한다
|
||||
PUB.Result.SetResultMessage(eResult.OPERATION, eECode.USER_STOP, eNextStep.PAUSE);
|
||||
PUB.log.Add("[사용자 일시정지]");
|
||||
PUB.log.Add("[User pause]");
|
||||
}
|
||||
else if (PUB.sm.Step == eSMStep.HOME_FULL) //홈진행중에는 대기상태로 전환
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user