Test_ACS 프로젝트 추가 - ACS 시뮬레이터 (v1.4.0)

## 신규 기능
- ACS(중앙제어시스템) 시뮬레이터 프로젝트 생성
- 8가지 AGV 제어 명령어 지원:
  * SetCurrent: 현재 위치 설정
  * Goto: RFID 이동
  * GotoAlias: 별칭 이동 (v1.1.0)
  * Stop: 정지
  * Reset: 에러 리셋
  * Manual: 수동 제어
  * MarkStop: 마크센서 정지
  * LiftControl: 리프트 제어

## AGV 상태 실시간 표시 (v1.3.0)
- AGV 상태 그룹박스 추가 (8가지 상태 정보)
- Status 메시지(cmd=3) 자동 수신 및 UI 업데이트
- 상태별 색상 표시로 직관적 모니터링

## 설정 관리
- 실행 폴더에 JSON 형식 설정 파일 저장 (v1.4.0)
- COM 포트, 보레이트, RFID, 별칭, AGV 선택 자동 저장
- 설정 파일 직접 편집 가능

## 기술 스택
- .NET Framework 4.8
- ENIGProtocol 프로젝트 참조
- RS232/Xbee 통신
- Newtonsoft.Json

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
backuppc
2025-11-12 17:35:36 +09:00
parent 883c75b2b8
commit 1c12beb3e7
16 changed files with 2369 additions and 1 deletions

View File

@@ -0,0 +1,828 @@
namespace Test_ACS
{
partial class MainForm
{
private System.ComponentModel.IContainer components = null;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
private void InitializeComponent()
{
this.grpConnection = new System.Windows.Forms.GroupBox();
this.btnRefresh = new System.Windows.Forms.Button();
this.btnConnect = new System.Windows.Forms.Button();
this.txtBaudRate = new System.Windows.Forms.TextBox();
this.cmbPort = new System.Windows.Forms.ComboBox();
this.lblBaudRate = new System.Windows.Forms.Label();
this.lblPort = new System.Windows.Forms.Label();
this.grpAGV = new System.Windows.Forms.GroupBox();
this.rbAGV2 = new System.Windows.Forms.RadioButton();
this.rbAGV1 = new System.Windows.Forms.RadioButton();
this.grpCommands = new System.Windows.Forms.GroupBox();
this.grpLift = new System.Windows.Forms.GroupBox();
this.btnLiftStop = new System.Windows.Forms.Button();
this.btnLiftDown = new System.Windows.Forms.Button();
this.btnLiftUp = new System.Windows.Forms.Button();
this.grpManual = new System.Windows.Forms.GroupBox();
this.btnManual = new System.Windows.Forms.Button();
this.numRuntime = new System.Windows.Forms.NumericUpDown();
this.lblRuntime = new System.Windows.Forms.Label();
this.cmbSpeed = new System.Windows.Forms.ComboBox();
this.lblSpeed = new System.Windows.Forms.Label();
this.cmbDirection = new System.Windows.Forms.ComboBox();
this.lblDirection = new System.Windows.Forms.Label();
this.chkMarkStop = new System.Windows.Forms.CheckBox();
this.btnMarkStop = new System.Windows.Forms.Button();
this.btnReset = new System.Windows.Forms.Button();
this.btnStop = new System.Windows.Forms.Button();
this.btnGotoAlias = new System.Windows.Forms.Button();
this.btnGoto = new System.Windows.Forms.Button();
this.btnSetCurrent = new System.Windows.Forms.Button();
this.txtAlias = new System.Windows.Forms.TextBox();
this.lblAlias = new System.Windows.Forms.Label();
this.txtRFID = new System.Windows.Forms.TextBox();
this.lblRFID = new System.Windows.Forms.Label();
this.grpLogs = new System.Windows.Forms.GroupBox();
this.tabLogs = new System.Windows.Forms.TabControl();
this.tabRX = new System.Windows.Forms.TabPage();
this.txtRxLog = new System.Windows.Forms.TextBox();
this.tabTX = new System.Windows.Forms.TabPage();
this.txtTxLog = new System.Windows.Forms.TextBox();
this.tabInfo = new System.Windows.Forms.TabPage();
this.txtInfoLog = new System.Windows.Forms.TextBox();
this.grpAGVStatus = new System.Windows.Forms.GroupBox();
this.lblLastTagValue = new System.Windows.Forms.Label();
this.lblLastTag = new System.Windows.Forms.Label();
this.lblLiftStValue = new System.Windows.Forms.Label();
this.lblLiftSt = new System.Windows.Forms.Label();
this.lblCartStValue = new System.Windows.Forms.Label();
this.lblCartSt = new System.Windows.Forms.Label();
this.lblChargeStValue = new System.Windows.Forms.Label();
this.lblChargeSt = new System.Windows.Forms.Label();
this.lblInpositionValue = new System.Windows.Forms.Label();
this.lblInposition = new System.Windows.Forms.Label();
this.lblDirectionValue = new System.Windows.Forms.Label();
this.lblRunStValue = new System.Windows.Forms.Label();
this.lblRunSt = new System.Windows.Forms.Label();
this.lblModeValue = new System.Windows.Forms.Label();
this.lblMode = new System.Windows.Forms.Label();
this.grpConnection.SuspendLayout();
this.grpAGV.SuspendLayout();
this.grpCommands.SuspendLayout();
this.grpLift.SuspendLayout();
this.grpManual.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.numRuntime)).BeginInit();
this.grpLogs.SuspendLayout();
this.tabLogs.SuspendLayout();
this.tabRX.SuspendLayout();
this.tabTX.SuspendLayout();
this.tabInfo.SuspendLayout();
this.grpAGVStatus.SuspendLayout();
this.SuspendLayout();
//
// grpConnection
//
this.grpConnection.Controls.Add(this.btnRefresh);
this.grpConnection.Controls.Add(this.btnConnect);
this.grpConnection.Controls.Add(this.txtBaudRate);
this.grpConnection.Controls.Add(this.cmbPort);
this.grpConnection.Controls.Add(this.lblBaudRate);
this.grpConnection.Controls.Add(this.lblPort);
this.grpConnection.Location = new System.Drawing.Point(12, 12);
this.grpConnection.Name = "grpConnection";
this.grpConnection.Size = new System.Drawing.Size(260, 120);
this.grpConnection.TabIndex = 0;
this.grpConnection.TabStop = false;
this.grpConnection.Text = "연결 설정";
//
// btnRefresh
//
this.btnRefresh.Location = new System.Drawing.Point(179, 22);
this.btnRefresh.Name = "btnRefresh";
this.btnRefresh.Size = new System.Drawing.Size(70, 23);
this.btnRefresh.TabIndex = 5;
this.btnRefresh.Text = "새로고침";
this.btnRefresh.UseVisualStyleBackColor = true;
this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
//
// btnConnect
//
this.btnConnect.Location = new System.Drawing.Point(15, 81);
this.btnConnect.Name = "btnConnect";
this.btnConnect.Size = new System.Drawing.Size(234, 30);
this.btnConnect.TabIndex = 4;
this.btnConnect.Text = "연결";
this.btnConnect.UseVisualStyleBackColor = true;
this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
//
// txtBaudRate
//
this.txtBaudRate.Location = new System.Drawing.Point(85, 53);
this.txtBaudRate.Name = "txtBaudRate";
this.txtBaudRate.Size = new System.Drawing.Size(164, 21);
this.txtBaudRate.TabIndex = 3;
this.txtBaudRate.Text = "9600";
this.txtBaudRate.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.txtBaudRate.TextChanged += new System.EventHandler(this.txtBaudRate_TextChanged);
//
// cmbPort
//
this.cmbPort.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbPort.FormattingEnabled = true;
this.cmbPort.Location = new System.Drawing.Point(85, 23);
this.cmbPort.Name = "cmbPort";
this.cmbPort.Size = new System.Drawing.Size(88, 20);
this.cmbPort.TabIndex = 2;
this.cmbPort.SelectedIndexChanged += new System.EventHandler(this.cmbPort_SelectedIndexChanged);
//
// lblBaudRate
//
this.lblBaudRate.AutoSize = true;
this.lblBaudRate.Location = new System.Drawing.Point(15, 56);
this.lblBaudRate.Name = "lblBaudRate";
this.lblBaudRate.Size = new System.Drawing.Size(57, 12);
this.lblBaudRate.TabIndex = 1;
this.lblBaudRate.Text = "보레이트:";
//
// lblPort
//
this.lblPort.AutoSize = true;
this.lblPort.Location = new System.Drawing.Point(15, 26);
this.lblPort.Name = "lblPort";
this.lblPort.Size = new System.Drawing.Size(66, 12);
this.lblPort.TabIndex = 0;
this.lblPort.Text = "COM 포트:";
//
// grpAGV
//
this.grpAGV.Controls.Add(this.rbAGV2);
this.grpAGV.Controls.Add(this.rbAGV1);
this.grpAGV.Location = new System.Drawing.Point(278, 12);
this.grpAGV.Name = "grpAGV";
this.grpAGV.Size = new System.Drawing.Size(200, 120);
this.grpAGV.TabIndex = 1;
this.grpAGV.TabStop = false;
this.grpAGV.Text = "AGV 선택";
//
// rbAGV2
//
this.rbAGV2.AutoSize = true;
this.rbAGV2.Location = new System.Drawing.Point(20, 60);
this.rbAGV2.Name = "rbAGV2";
this.rbAGV2.Size = new System.Drawing.Size(95, 16);
this.rbAGV2.TabIndex = 1;
this.rbAGV2.Text = "AGV2 (ID:12)";
this.rbAGV2.UseVisualStyleBackColor = true;
this.rbAGV2.CheckedChanged += new System.EventHandler(this.rbAGV2_CheckedChanged);
//
// rbAGV1
//
this.rbAGV1.AutoSize = true;
this.rbAGV1.Checked = true;
this.rbAGV1.Location = new System.Drawing.Point(20, 30);
this.rbAGV1.Name = "rbAGV1";
this.rbAGV1.Size = new System.Drawing.Size(95, 16);
this.rbAGV1.TabIndex = 0;
this.rbAGV1.TabStop = true;
this.rbAGV1.Text = "AGV1 (ID:11)";
this.rbAGV1.UseVisualStyleBackColor = true;
this.rbAGV1.CheckedChanged += new System.EventHandler(this.rbAGV1_CheckedChanged);
//
// grpCommands
//
this.grpCommands.Controls.Add(this.grpLift);
this.grpCommands.Controls.Add(this.grpManual);
this.grpCommands.Controls.Add(this.chkMarkStop);
this.grpCommands.Controls.Add(this.btnMarkStop);
this.grpCommands.Controls.Add(this.btnReset);
this.grpCommands.Controls.Add(this.btnStop);
this.grpCommands.Controls.Add(this.btnGotoAlias);
this.grpCommands.Controls.Add(this.btnGoto);
this.grpCommands.Controls.Add(this.btnSetCurrent);
this.grpCommands.Controls.Add(this.txtAlias);
this.grpCommands.Controls.Add(this.lblAlias);
this.grpCommands.Controls.Add(this.txtRFID);
this.grpCommands.Controls.Add(this.lblRFID);
this.grpCommands.Location = new System.Drawing.Point(12, 138);
this.grpCommands.Name = "grpCommands";
this.grpCommands.Size = new System.Drawing.Size(466, 312);
this.grpCommands.TabIndex = 2;
this.grpCommands.TabStop = false;
this.grpCommands.Text = "ACS 명령";
//
// grpLift
//
this.grpLift.Controls.Add(this.btnLiftStop);
this.grpLift.Controls.Add(this.btnLiftDown);
this.grpLift.Controls.Add(this.btnLiftUp);
this.grpLift.Location = new System.Drawing.Point(240, 202);
this.grpLift.Name = "grpLift";
this.grpLift.Size = new System.Drawing.Size(210, 100);
this.grpLift.TabIndex = 9;
this.grpLift.TabStop = false;
this.grpLift.Text = "리프트 제어";
//
// btnLiftStop
//
this.btnLiftStop.Location = new System.Drawing.Point(135, 20);
this.btnLiftStop.Name = "btnLiftStop";
this.btnLiftStop.Size = new System.Drawing.Size(60, 70);
this.btnLiftStop.TabIndex = 2;
this.btnLiftStop.Text = "정지";
this.btnLiftStop.UseVisualStyleBackColor = true;
this.btnLiftStop.Click += new System.EventHandler(this.btnLiftStop_Click);
//
// btnLiftDown
//
this.btnLiftDown.Location = new System.Drawing.Point(70, 20);
this.btnLiftDown.Name = "btnLiftDown";
this.btnLiftDown.Size = new System.Drawing.Size(60, 70);
this.btnLiftDown.TabIndex = 1;
this.btnLiftDown.Text = "하강";
this.btnLiftDown.UseVisualStyleBackColor = true;
this.btnLiftDown.Click += new System.EventHandler(this.btnLiftDown_Click);
//
// btnLiftUp
//
this.btnLiftUp.Location = new System.Drawing.Point(5, 20);
this.btnLiftUp.Name = "btnLiftUp";
this.btnLiftUp.Size = new System.Drawing.Size(60, 70);
this.btnLiftUp.TabIndex = 0;
this.btnLiftUp.Text = "상승";
this.btnLiftUp.UseVisualStyleBackColor = true;
this.btnLiftUp.Click += new System.EventHandler(this.btnLiftUp_Click);
//
// grpManual
//
this.grpManual.Controls.Add(this.btnManual);
this.grpManual.Controls.Add(this.numRuntime);
this.grpManual.Controls.Add(this.lblRuntime);
this.grpManual.Controls.Add(this.cmbSpeed);
this.grpManual.Controls.Add(this.lblSpeed);
this.grpManual.Controls.Add(this.cmbDirection);
this.grpManual.Location = new System.Drawing.Point(15, 202);
this.grpManual.Name = "grpManual";
this.grpManual.Size = new System.Drawing.Size(215, 100);
this.grpManual.TabIndex = 8;
this.grpManual.TabStop = false;
this.grpManual.Text = "수동 제어";
//
// btnManual
//
this.btnManual.Location = new System.Drawing.Point(136, 16);
this.btnManual.Name = "btnManual";
this.btnManual.Size = new System.Drawing.Size(73, 74);
this.btnManual.TabIndex = 6;
this.btnManual.Text = "수동\r\n이동\r\n실행";
this.btnManual.UseVisualStyleBackColor = true;
this.btnManual.Click += new System.EventHandler(this.btnManual_Click);
//
// numRuntime
//
this.numRuntime.Location = new System.Drawing.Point(60, 66);
this.numRuntime.Maximum = new decimal(new int[] {
255,
0,
0,
0});
this.numRuntime.Name = "numRuntime";
this.numRuntime.Size = new System.Drawing.Size(70, 21);
this.numRuntime.TabIndex = 5;
this.numRuntime.Value = new decimal(new int[] {
5,
0,
0,
0});
//
// lblRuntime
//
this.lblRuntime.AutoSize = true;
this.lblRuntime.Location = new System.Drawing.Point(3, 70);
this.lblRuntime.Name = "lblRuntime";
this.lblRuntime.Size = new System.Drawing.Size(51, 12);
this.lblRuntime.TabIndex = 4;
this.lblRuntime.Text = "시간(초)";
//
// cmbSpeed
//
this.cmbSpeed.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbSpeed.FormattingEnabled = true;
this.cmbSpeed.Items.AddRange(new object[] {
"느림",
"보통",
"빠름"});
this.cmbSpeed.Location = new System.Drawing.Point(60, 41);
this.cmbSpeed.Name = "cmbSpeed";
this.cmbSpeed.Size = new System.Drawing.Size(70, 20);
this.cmbSpeed.TabIndex = 3;
//
// lblSpeed
//
this.lblSpeed.AutoSize = true;
this.lblSpeed.Location = new System.Drawing.Point(14, 45);
this.lblSpeed.Name = "lblSpeed";
this.lblSpeed.Size = new System.Drawing.Size(29, 12);
this.lblSpeed.TabIndex = 2;
this.lblSpeed.Text = "속도";
//
// cmbDirection
//
this.cmbDirection.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbDirection.FormattingEnabled = true;
this.cmbDirection.Items.AddRange(new object[] {
"후진",
"전진",
"좌",
"우"});
this.cmbDirection.Location = new System.Drawing.Point(60, 16);
this.cmbDirection.Name = "cmbDirection";
this.cmbDirection.Size = new System.Drawing.Size(70, 20);
this.cmbDirection.TabIndex = 1;
//
// lblDirection
//
this.lblDirection.AutoSize = true;
this.lblDirection.Location = new System.Drawing.Point(10, 48);
this.lblDirection.Name = "lblDirection";
this.lblDirection.Size = new System.Drawing.Size(33, 12);
this.lblDirection.TabIndex = 4;
this.lblDirection.Text = "방향:";
//
// chkMarkStop
//
this.chkMarkStop.AutoSize = true;
this.chkMarkStop.Location = new System.Drawing.Point(240, 174);
this.chkMarkStop.Name = "chkMarkStop";
this.chkMarkStop.Size = new System.Drawing.Size(76, 16);
this.chkMarkStop.TabIndex = 7;
this.chkMarkStop.Text = "정지 설정";
this.chkMarkStop.UseVisualStyleBackColor = true;
//
// btnMarkStop
//
this.btnMarkStop.Location = new System.Drawing.Point(15, 167);
this.btnMarkStop.Name = "btnMarkStop";
this.btnMarkStop.Size = new System.Drawing.Size(215, 30);
this.btnMarkStop.TabIndex = 6;
this.btnMarkStop.Text = "마크센서 정지";
this.btnMarkStop.UseVisualStyleBackColor = true;
this.btnMarkStop.Click += new System.EventHandler(this.btnMarkStop_Click);
//
// btnReset
//
this.btnReset.Location = new System.Drawing.Point(240, 132);
this.btnReset.Name = "btnReset";
this.btnReset.Size = new System.Drawing.Size(210, 30);
this.btnReset.TabIndex = 5;
this.btnReset.Text = "에러 리셋";
this.btnReset.UseVisualStyleBackColor = true;
this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
//
// btnStop
//
this.btnStop.Location = new System.Drawing.Point(15, 132);
this.btnStop.Name = "btnStop";
this.btnStop.Size = new System.Drawing.Size(215, 30);
this.btnStop.TabIndex = 4;
this.btnStop.Text = "정지";
this.btnStop.UseVisualStyleBackColor = true;
this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
//
// btnGotoAlias
//
this.btnGotoAlias.Location = new System.Drawing.Point(286, 94);
this.btnGotoAlias.Name = "btnGotoAlias";
this.btnGotoAlias.Size = new System.Drawing.Size(174, 30);
this.btnGotoAlias.TabIndex = 11;
this.btnGotoAlias.Text = "별칭 이동 (GotoAlias)";
this.btnGotoAlias.UseVisualStyleBackColor = true;
this.btnGotoAlias.Click += new System.EventHandler(this.btnGotoAlias_Click);
//
// btnGoto
//
this.btnGoto.Location = new System.Drawing.Point(286, 23);
this.btnGoto.Name = "btnGoto";
this.btnGoto.Size = new System.Drawing.Size(174, 30);
this.btnGoto.TabIndex = 3;
this.btnGoto.Text = "RFID 이동 (Goto)";
this.btnGoto.UseVisualStyleBackColor = true;
this.btnGoto.Click += new System.EventHandler(this.btnGoto_Click);
//
// btnSetCurrent
//
this.btnSetCurrent.Location = new System.Drawing.Point(85, 57);
this.btnSetCurrent.Name = "btnSetCurrent";
this.btnSetCurrent.Size = new System.Drawing.Size(195, 30);
this.btnSetCurrent.TabIndex = 2;
this.btnSetCurrent.Text = "현재 위치 설정 (SetCurrent)";
this.btnSetCurrent.UseVisualStyleBackColor = true;
this.btnSetCurrent.Click += new System.EventHandler(this.btnSetCurrent_Click);
//
// txtAlias
//
this.txtAlias.Font = new System.Drawing.Font("Consolas", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtAlias.Location = new System.Drawing.Point(85, 96);
this.txtAlias.Name = "txtAlias";
this.txtAlias.Size = new System.Drawing.Size(195, 26);
this.txtAlias.TabIndex = 10;
this.txtAlias.Text = "CHARGER1";
this.txtAlias.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.txtAlias.TextChanged += new System.EventHandler(this.txtAlias_TextChanged);
//
// lblAlias
//
this.lblAlias.AutoSize = true;
this.lblAlias.Location = new System.Drawing.Point(15, 103);
this.lblAlias.Name = "lblAlias";
this.lblAlias.Size = new System.Drawing.Size(71, 12);
this.lblAlias.TabIndex = 9;
this.lblAlias.Text = "별칭(Alias):";
//
// txtRFID
//
this.txtRFID.Font = new System.Drawing.Font("Consolas", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtRFID.Location = new System.Drawing.Point(85, 25);
this.txtRFID.Name = "txtRFID";
this.txtRFID.Size = new System.Drawing.Size(195, 26);
this.txtRFID.TabIndex = 1;
this.txtRFID.Text = "0001";
this.txtRFID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.txtRFID.TextChanged += new System.EventHandler(this.txtRFID_TextChanged);
//
// lblRFID
//
this.lblRFID.AutoSize = true;
this.lblRFID.Location = new System.Drawing.Point(15, 32);
this.lblRFID.Name = "lblRFID";
this.lblRFID.Size = new System.Drawing.Size(63, 12);
this.lblRFID.TabIndex = 0;
this.lblRFID.Text = "RFID 번호:";
//
// grpLogs
//
this.grpLogs.Controls.Add(this.tabLogs);
this.grpLogs.Location = new System.Drawing.Point(484, 12);
this.grpLogs.Name = "grpLogs";
this.grpLogs.Size = new System.Drawing.Size(520, 564);
this.grpLogs.TabIndex = 3;
this.grpLogs.TabStop = false;
this.grpLogs.Text = "로그";
//
// tabLogs
//
this.tabLogs.Controls.Add(this.tabRX);
this.tabLogs.Controls.Add(this.tabTX);
this.tabLogs.Controls.Add(this.tabInfo);
this.tabLogs.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabLogs.Location = new System.Drawing.Point(3, 17);
this.tabLogs.Name = "tabLogs";
this.tabLogs.SelectedIndex = 0;
this.tabLogs.Size = new System.Drawing.Size(514, 544);
this.tabLogs.TabIndex = 0;
//
// tabRX
//
this.tabRX.Controls.Add(this.txtRxLog);
this.tabRX.Location = new System.Drawing.Point(4, 22);
this.tabRX.Name = "tabRX";
this.tabRX.Padding = new System.Windows.Forms.Padding(3);
this.tabRX.Size = new System.Drawing.Size(506, 518);
this.tabRX.TabIndex = 1;
this.tabRX.Text = "수신 (RX)";
this.tabRX.UseVisualStyleBackColor = true;
//
// txtRxLog
//
this.txtRxLog.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtRxLog.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtRxLog.Location = new System.Drawing.Point(3, 3);
this.txtRxLog.Multiline = true;
this.txtRxLog.Name = "txtRxLog";
this.txtRxLog.ReadOnly = true;
this.txtRxLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtRxLog.Size = new System.Drawing.Size(500, 512);
this.txtRxLog.TabIndex = 0;
//
// tabTX
//
this.tabTX.Controls.Add(this.txtTxLog);
this.tabTX.Location = new System.Drawing.Point(4, 22);
this.tabTX.Name = "tabTX";
this.tabTX.Padding = new System.Windows.Forms.Padding(3);
this.tabTX.Size = new System.Drawing.Size(506, 469);
this.tabTX.TabIndex = 0;
this.tabTX.Text = "송신 (TX)";
this.tabTX.UseVisualStyleBackColor = true;
//
// txtTxLog
//
this.txtTxLog.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtTxLog.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtTxLog.Location = new System.Drawing.Point(3, 3);
this.txtTxLog.Multiline = true;
this.txtTxLog.Name = "txtTxLog";
this.txtTxLog.ReadOnly = true;
this.txtTxLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtTxLog.Size = new System.Drawing.Size(500, 463);
this.txtTxLog.TabIndex = 0;
//
// tabInfo
//
this.tabInfo.Controls.Add(this.txtInfoLog);
this.tabInfo.Location = new System.Drawing.Point(4, 22);
this.tabInfo.Name = "tabInfo";
this.tabInfo.Size = new System.Drawing.Size(506, 469);
this.tabInfo.TabIndex = 2;
this.tabInfo.Text = "정보";
this.tabInfo.UseVisualStyleBackColor = true;
//
// txtInfoLog
//
this.txtInfoLog.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtInfoLog.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtInfoLog.Location = new System.Drawing.Point(0, 0);
this.txtInfoLog.Multiline = true;
this.txtInfoLog.Name = "txtInfoLog";
this.txtInfoLog.ReadOnly = true;
this.txtInfoLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtInfoLog.Size = new System.Drawing.Size(506, 469);
this.txtInfoLog.TabIndex = 0;
//
// grpAGVStatus
//
this.grpAGVStatus.Controls.Add(this.lblLastTagValue);
this.grpAGVStatus.Controls.Add(this.lblLastTag);
this.grpAGVStatus.Controls.Add(this.lblLiftStValue);
this.grpAGVStatus.Controls.Add(this.lblLiftSt);
this.grpAGVStatus.Controls.Add(this.lblCartStValue);
this.grpAGVStatus.Controls.Add(this.lblCartSt);
this.grpAGVStatus.Controls.Add(this.lblChargeStValue);
this.grpAGVStatus.Controls.Add(this.lblChargeSt);
this.grpAGVStatus.Controls.Add(this.lblInpositionValue);
this.grpAGVStatus.Controls.Add(this.lblInposition);
this.grpAGVStatus.Controls.Add(this.lblDirectionValue);
this.grpAGVStatus.Controls.Add(this.lblDirection);
this.grpAGVStatus.Controls.Add(this.lblRunStValue);
this.grpAGVStatus.Controls.Add(this.lblRunSt);
this.grpAGVStatus.Controls.Add(this.lblModeValue);
this.grpAGVStatus.Controls.Add(this.lblMode);
this.grpAGVStatus.Location = new System.Drawing.Point(12, 456);
this.grpAGVStatus.Name = "grpAGVStatus";
this.grpAGVStatus.Size = new System.Drawing.Size(466, 120);
this.grpAGVStatus.TabIndex = 4;
this.grpAGVStatus.TabStop = false;
this.grpAGVStatus.Text = "AGV 상태";
//
// lblLastTagValue
//
this.lblLastTagValue.AutoSize = true;
this.lblLastTagValue.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Bold);
this.lblLastTagValue.Location = new System.Drawing.Point(310, 98);
this.lblLastTagValue.Name = "lblLastTagValue";
this.lblLastTagValue.Size = new System.Drawing.Size(14, 14);
this.lblLastTagValue.TabIndex = 15;
this.lblLastTagValue.Text = "-";
//
// lblLastTag
//
this.lblLastTag.AutoSize = true;
this.lblLastTag.Location = new System.Drawing.Point(240, 98);
this.lblLastTag.Name = "lblLastTag";
this.lblLastTag.Size = new System.Drawing.Size(57, 12);
this.lblLastTag.TabIndex = 14;
this.lblLastTag.Text = "현재태그:";
//
// lblLiftStValue
//
this.lblLiftStValue.AutoSize = true;
this.lblLiftStValue.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold);
this.lblLiftStValue.Location = new System.Drawing.Point(80, 98);
this.lblLiftStValue.Name = "lblLiftStValue";
this.lblLiftStValue.Size = new System.Drawing.Size(12, 12);
this.lblLiftStValue.TabIndex = 13;
this.lblLiftStValue.Text = "-";
//
// lblLiftSt
//
this.lblLiftSt.AutoSize = true;
this.lblLiftSt.Location = new System.Drawing.Point(10, 98);
this.lblLiftSt.Name = "lblLiftSt";
this.lblLiftSt.Size = new System.Drawing.Size(45, 12);
this.lblLiftSt.TabIndex = 12;
this.lblLiftSt.Text = "리프트:";
//
// lblCartStValue
//
this.lblCartStValue.AutoSize = true;
this.lblCartStValue.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold);
this.lblCartStValue.Location = new System.Drawing.Point(310, 73);
this.lblCartStValue.Name = "lblCartStValue";
this.lblCartStValue.Size = new System.Drawing.Size(12, 12);
this.lblCartStValue.TabIndex = 11;
this.lblCartStValue.Text = "-";
//
// lblCartSt
//
this.lblCartSt.AutoSize = true;
this.lblCartSt.Location = new System.Drawing.Point(240, 73);
this.lblCartSt.Name = "lblCartSt";
this.lblCartSt.Size = new System.Drawing.Size(33, 12);
this.lblCartSt.TabIndex = 10;
this.lblCartSt.Text = "카트:";
//
// lblChargeStValue
//
this.lblChargeStValue.AutoSize = true;
this.lblChargeStValue.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold);
this.lblChargeStValue.Location = new System.Drawing.Point(80, 73);
this.lblChargeStValue.Name = "lblChargeStValue";
this.lblChargeStValue.Size = new System.Drawing.Size(12, 12);
this.lblChargeStValue.TabIndex = 9;
this.lblChargeStValue.Text = "-";
//
// lblChargeSt
//
this.lblChargeSt.AutoSize = true;
this.lblChargeSt.Location = new System.Drawing.Point(10, 73);
this.lblChargeSt.Name = "lblChargeSt";
this.lblChargeSt.Size = new System.Drawing.Size(33, 12);
this.lblChargeSt.TabIndex = 8;
this.lblChargeSt.Text = "충전:";
//
// lblInpositionValue
//
this.lblInpositionValue.AutoSize = true;
this.lblInpositionValue.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold);
this.lblInpositionValue.Location = new System.Drawing.Point(310, 48);
this.lblInpositionValue.Name = "lblInpositionValue";
this.lblInpositionValue.Size = new System.Drawing.Size(12, 12);
this.lblInpositionValue.TabIndex = 7;
this.lblInpositionValue.Text = "-";
//
// lblInposition
//
this.lblInposition.AutoSize = true;
this.lblInposition.Location = new System.Drawing.Point(240, 48);
this.lblInposition.Name = "lblInposition";
this.lblInposition.Size = new System.Drawing.Size(57, 12);
this.lblInposition.TabIndex = 6;
this.lblInposition.Text = "도달완료:";
//
// lblDirectionValue
//
this.lblDirectionValue.AutoSize = true;
this.lblDirectionValue.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold);
this.lblDirectionValue.Location = new System.Drawing.Point(80, 48);
this.lblDirectionValue.Name = "lblDirectionValue";
this.lblDirectionValue.Size = new System.Drawing.Size(12, 12);
this.lblDirectionValue.TabIndex = 5;
this.lblDirectionValue.Text = "-";
//
// lblRunStValue
//
this.lblRunStValue.AutoSize = true;
this.lblRunStValue.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold);
this.lblRunStValue.Location = new System.Drawing.Point(310, 23);
this.lblRunStValue.Name = "lblRunStValue";
this.lblRunStValue.Size = new System.Drawing.Size(12, 12);
this.lblRunStValue.TabIndex = 3;
this.lblRunStValue.Text = "-";
//
// lblRunSt
//
this.lblRunSt.AutoSize = true;
this.lblRunSt.Location = new System.Drawing.Point(240, 23);
this.lblRunSt.Name = "lblRunSt";
this.lblRunSt.Size = new System.Drawing.Size(57, 12);
this.lblRunSt.TabIndex = 2;
this.lblRunSt.Text = "실행상태:";
//
// lblModeValue
//
this.lblModeValue.AutoSize = true;
this.lblModeValue.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold);
this.lblModeValue.Location = new System.Drawing.Point(80, 23);
this.lblModeValue.Name = "lblModeValue";
this.lblModeValue.Size = new System.Drawing.Size(12, 12);
this.lblModeValue.TabIndex = 1;
this.lblModeValue.Text = "-";
//
// lblMode
//
this.lblMode.AutoSize = true;
this.lblMode.Location = new System.Drawing.Point(10, 23);
this.lblMode.Name = "lblMode";
this.lblMode.Size = new System.Drawing.Size(33, 12);
this.lblMode.TabIndex = 0;
this.lblMode.Text = "모드:";
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1016, 588);
this.Controls.Add(this.grpAGVStatus);
this.Controls.Add(this.grpLogs);
this.Controls.Add(this.grpCommands);
this.Controls.Add(this.grpAGV);
this.Controls.Add(this.grpConnection);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "MainForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "ACS 시뮬레이터 - ENIG AGV 테스트";
this.grpConnection.ResumeLayout(false);
this.grpConnection.PerformLayout();
this.grpAGV.ResumeLayout(false);
this.grpAGV.PerformLayout();
this.grpCommands.ResumeLayout(false);
this.grpCommands.PerformLayout();
this.grpLift.ResumeLayout(false);
this.grpManual.ResumeLayout(false);
this.grpManual.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numRuntime)).EndInit();
this.grpLogs.ResumeLayout(false);
this.tabLogs.ResumeLayout(false);
this.tabRX.ResumeLayout(false);
this.tabRX.PerformLayout();
this.tabTX.ResumeLayout(false);
this.tabTX.PerformLayout();
this.tabInfo.ResumeLayout(false);
this.tabInfo.PerformLayout();
this.grpAGVStatus.ResumeLayout(false);
this.grpAGVStatus.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox grpConnection;
private System.Windows.Forms.Button btnConnect;
private System.Windows.Forms.TextBox txtBaudRate;
private System.Windows.Forms.ComboBox cmbPort;
private System.Windows.Forms.Label lblBaudRate;
private System.Windows.Forms.Label lblPort;
private System.Windows.Forms.GroupBox grpAGV;
private System.Windows.Forms.RadioButton rbAGV2;
private System.Windows.Forms.RadioButton rbAGV1;
private System.Windows.Forms.GroupBox grpCommands;
private System.Windows.Forms.Button btnSetCurrent;
private System.Windows.Forms.TextBox txtRFID;
private System.Windows.Forms.Label lblRFID;
private System.Windows.Forms.Button btnGoto;
private System.Windows.Forms.Button btnStop;
private System.Windows.Forms.Button btnReset;
private System.Windows.Forms.Button btnMarkStop;
private System.Windows.Forms.CheckBox chkMarkStop;
private System.Windows.Forms.GroupBox grpManual;
private System.Windows.Forms.Button btnManual;
private System.Windows.Forms.NumericUpDown numRuntime;
private System.Windows.Forms.Label lblRuntime;
private System.Windows.Forms.ComboBox cmbSpeed;
private System.Windows.Forms.Label lblSpeed;
private System.Windows.Forms.ComboBox cmbDirection;
private System.Windows.Forms.GroupBox grpLift;
private System.Windows.Forms.Button btnLiftStop;
private System.Windows.Forms.Button btnLiftDown;
private System.Windows.Forms.Button btnLiftUp;
private System.Windows.Forms.GroupBox grpLogs;
private System.Windows.Forms.TabControl tabLogs;
private System.Windows.Forms.TabPage tabTX;
private System.Windows.Forms.TextBox txtTxLog;
private System.Windows.Forms.TabPage tabRX;
private System.Windows.Forms.TextBox txtRxLog;
private System.Windows.Forms.TabPage tabInfo;
private System.Windows.Forms.TextBox txtInfoLog;
private System.Windows.Forms.Button btnRefresh;
private System.Windows.Forms.Button btnGotoAlias;
private System.Windows.Forms.TextBox txtAlias;
private System.Windows.Forms.Label lblAlias;
private System.Windows.Forms.GroupBox grpAGVStatus;
private System.Windows.Forms.Label lblLastTagValue;
private System.Windows.Forms.Label lblLastTag;
private System.Windows.Forms.Label lblLiftStValue;
private System.Windows.Forms.Label lblLiftSt;
private System.Windows.Forms.Label lblCartStValue;
private System.Windows.Forms.Label lblCartSt;
private System.Windows.Forms.Label lblChargeStValue;
private System.Windows.Forms.Label lblChargeSt;
private System.Windows.Forms.Label lblInpositionValue;
private System.Windows.Forms.Label lblInposition;
private System.Windows.Forms.Label lblDirectionValue;
private System.Windows.Forms.Label lblDirection;
private System.Windows.Forms.Label lblRunStValue;
private System.Windows.Forms.Label lblRunSt;
private System.Windows.Forms.Label lblModeValue;
private System.Windows.Forms.Label lblMode;
}
}