에뮬레이터 개발 전.

This commit is contained in:
backuppc
2025-12-12 14:29:06 +09:00
parent ee2a6f04bb
commit 07ddc0425f
35 changed files with 952 additions and 1242 deletions

View File

@@ -1803,7 +1803,7 @@ namespace AGVSimulator.Forms
$"모터: {command.Motor}\n" +
$"마그넷: {command.Magnet}\n" +
$"속도: {command.Speed}\n" +
$"이유: {command.Reason}\n\n" +
$"이유: {command.Message}\n\n" +
$"---\n" +
$"현재 상태: {agv.CurrentState}\n" +
$"현재 방향: {agv.CurrentDirection}\n" +
@@ -1824,7 +1824,7 @@ namespace AGVSimulator.Forms
// 첫 번째 AGV의 다음 행동 예측
var agv = _agvList[0];
var command = agv.Predict();
this.lbPredict.Text = $"Motor:{command.Motor},Magnet:{command.Magnet},Speed:{command.Speed} : {command.Reason}";
this.lbPredict.Text = $"Motor:{command.Motor},Magnet:{command.Magnet},Speed:{command.Speed} : {command.Message}";
}