메인화면 버튼 수정

피드백 파일 읽기 수정
테스트용 통신 프로토콜 추가
main
DESKTOP-S459P9R\LSJ 2025-12-18 20:21:34 +09:00
parent aef5a5412d
commit d73aa19565
13 changed files with 24 additions and 4 deletions

View File

@ -0,0 +1 @@
PR0000000420010001AA

View File

@ -0,0 +1 @@
PR0000000420010005AE

View File

@ -0,0 +1 @@
CBS00068

View File

@ -0,0 +1 @@
CBT00069

View File

@ -0,0 +1 @@
SR070Z 120sp0019411413sp0019615112sp0019217354sp0019514220sp0019410860sp0019324684so0020712807sp0019916892sp0020120275so00210 9089F9

View File

@ -0,0 +1 @@
SR010Z 60sp+ 10100sp+ 10200sp+ 10300sp+ 10400sp+ 10500sp+ 10600C5

View File

@ -0,0 +1 @@
SR020Z 60sp+ 1600sp+ 1700sp+ 1800sp+ 1900sp+ 2400sp+ 25007A

View File

@ -0,0 +1 @@
SR030Z 60sp+ 1650sp+ 1750sp+ 1850sp+ 1950sp+ 2450sp+ 255099

View File

@ -0,0 +1 @@
SR040Z 60sp+ 1600sp+ 1700sp+ 1800sp+ 1950sp+ 2400sp+ 250081

View File

@ -0,0 +1 @@
SR020Z 60sp+ 1800sp+ 1700sp+ 1800sp+ 1900sp+ 2400sp+ 25007C

View File

@ -0,0 +1 @@
SR040Z 60sp+ 1670sp+ 1700sp+ 1800sp+ 1950sp+ 2430sp+ 25008B

View File

@ -410,10 +410,6 @@ namespace INT63DC_6CH.Forms
}
else if (this.SystemConfig.EthernetOperationMode == 2)
this.EthernetClientDisconnect();
// FeedbackSystem
if (this.SystemConfig.IsFeedback == true)
this.CurrentFeedbackItem = new FeedbackConfiguration();
}
private bool UI_Invoke(System.Threading.ThreadStart invoker)
@ -7350,6 +7346,13 @@ namespace INT63DC_6CH.Forms
// 시스템설정 값 로딩 후 셋팅
this.DefaultSetting2();
// Feedback System
if(this.SystemConfig.IsFeedback == true)
{
this.CurrentFeedbackItem = new FeedbackConfiguration();
this.LoadFeedbackItemFile(ref this.CurrentFeedbackItem, this.SystemConfig.ProductNumber - 1);
}
// Modbus 데이터 초기화
if (this.SystemConfig.IsModbus == true)
{

View File

@ -721,6 +721,12 @@ namespace INT63DC_6CH.Forms
this.pictureBoxEthernetConnection.Visible = false;
this.pictureBoxEthernetDisconnection.Visible = true;
}
// Feedback
if (this.ParentForm.SystemConfig.IsFeedback == true)
this.buttonFeedback.Visible = true;
else
this.buttonFeedback.Visible = false;
}
public void RescaleControl()