parent
8dc1c7e353
commit
c8a4280bd5
|
@ -25,8 +25,8 @@ namespace ITC81DB_2H.Forms
|
||||||
public partial class FormMain : Form
|
public partial class FormMain : Form
|
||||||
{
|
{
|
||||||
#region Field
|
#region Field
|
||||||
public static string DisplayVersion = "3.3.6";
|
public static string DisplayVersion = "3.3.7";
|
||||||
public static string ReleaseDate = "2025.03.04";
|
public static string ReleaseDate = "2025.05.20";
|
||||||
|
|
||||||
private SmartSplash SmartSplashProgramLoad;
|
private SmartSplash SmartSplashProgramLoad;
|
||||||
public bool IsCommunicationLogOpen;
|
public bool IsCommunicationLogOpen;
|
||||||
|
@ -927,9 +927,9 @@ namespace ITC81DB_2H.Forms
|
||||||
|
|
||||||
if (flagAlarm == true)
|
if (flagAlarm == true)
|
||||||
{
|
{
|
||||||
if (this.SystemConfig1.IsExternalInputLamp == true && this.IsLampOnDataSend == false)
|
if (this.IsLampOnDataSend == false)
|
||||||
this.OnExternalInputLampSignal(true, true);
|
this.OnExternalInputLampSignal(true, true);
|
||||||
if (this.SystemConfig1.IsExternalInputBuzzer == true && this.IsBuzzerOnDataSend == false)
|
if (this.IsBuzzerOnDataSend == false)
|
||||||
this.OnExternalInputBuzzerSignal(true, true);
|
this.OnExternalInputBuzzerSignal(true, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -325,9 +325,9 @@ namespace ITC81DB_2H.Forms
|
||||||
this.labelSorterAlarm.Visible = false;
|
this.labelSorterAlarm.Visible = false;
|
||||||
this.PopUpWarningClose();
|
this.PopUpWarningClose();
|
||||||
|
|
||||||
if (this.ParentForm.SystemConfig1.IsExternalInputLamp == true && this.ParentForm.IsLampOnDataSend == true)
|
if (this.ParentForm.IsLampOnDataSend == true)
|
||||||
this.ParentForm.TransferData(CommunicationCommand.LampOnContinuousDisable, CommunicationID.MainBoard);
|
this.ParentForm.TransferData(CommunicationCommand.LampOnContinuousDisable, CommunicationID.MainBoard);
|
||||||
if (this.ParentForm.SystemConfig1.IsExternalInputBuzzer == true && this.ParentForm.IsBuzzerOnDataSend == true)
|
if (this.ParentForm.IsBuzzerOnDataSend == true)
|
||||||
this.ParentForm.TransferData(CommunicationCommand.BuzzerOnContinuousDisable, CommunicationID.MainBoard);
|
this.ParentForm.TransferData(CommunicationCommand.BuzzerOnContinuousDisable, CommunicationID.MainBoard);
|
||||||
|
|
||||||
this.ParentForm.IsLampOnDataSend = false;
|
this.ParentForm.IsLampOnDataSend = false;
|
||||||
|
@ -1637,9 +1637,9 @@ namespace ITC81DB_2H.Forms
|
||||||
this.MainAlarm.Visible = true;
|
this.MainAlarm.Visible = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.ParentForm.SystemConfig1.IsExternalInputLamp == true && this.ParentForm.IsLampOnDataSend == true)
|
if (this.ParentForm.IsLampOnDataSend == true)
|
||||||
this.ParentForm.TransferData(CommunicationCommand.LampOnContinuousDisable, CommunicationID.MainBoard);
|
this.ParentForm.TransferData(CommunicationCommand.LampOnContinuousDisable, CommunicationID.MainBoard);
|
||||||
if (this.ParentForm.SystemConfig1.IsExternalInputBuzzer == true && this.ParentForm.IsBuzzerOnDataSend == true)
|
if (this.ParentForm.IsBuzzerOnDataSend == true)
|
||||||
this.ParentForm.TransferData(CommunicationCommand.BuzzerOnContinuousDisable, CommunicationID.MainBoard);
|
this.ParentForm.TransferData(CommunicationCommand.BuzzerOnContinuousDisable, CommunicationID.MainBoard);
|
||||||
}
|
}
|
||||||
private void labelSorterAlarm_Click(object sender, EventArgs e)
|
private void labelSorterAlarm_Click(object sender, EventArgs e)
|
||||||
|
@ -1649,9 +1649,9 @@ namespace ITC81DB_2H.Forms
|
||||||
this.Part11AutomaticLogoutReset();
|
this.Part11AutomaticLogoutReset();
|
||||||
|
|
||||||
this.ParentForm.TransferData(CommunicationCommand.AlarmNgClearSorter, CommunicationID.MainBoard);
|
this.ParentForm.TransferData(CommunicationCommand.AlarmNgClearSorter, CommunicationID.MainBoard);
|
||||||
if (this.ParentForm.SystemConfig1.IsExternalInputLamp == true && this.ParentForm.IsLampOnDataSend == true)
|
if (this.ParentForm.IsLampOnDataSend == true)
|
||||||
this.ParentForm.TransferData(CommunicationCommand.LampOnContinuousDisable, CommunicationID.MainBoard);
|
this.ParentForm.TransferData(CommunicationCommand.LampOnContinuousDisable, CommunicationID.MainBoard);
|
||||||
if (this.ParentForm.SystemConfig1.IsExternalInputBuzzer == true && this.ParentForm.IsBuzzerOnDataSend == true)
|
if (this.ParentForm.IsBuzzerOnDataSend == true)
|
||||||
this.ParentForm.TransferData(CommunicationCommand.BuzzerOnContinuousDisable, CommunicationID.MainBoard);
|
this.ParentForm.TransferData(CommunicationCommand.BuzzerOnContinuousDisable, CommunicationID.MainBoard);
|
||||||
this.labelSorterAlarm.Visible = false;
|
this.labelSorterAlarm.Visible = false;
|
||||||
}
|
}
|
||||||
|
@ -1663,9 +1663,9 @@ namespace ITC81DB_2H.Forms
|
||||||
|
|
||||||
if (this.MainAlarm.listBoxMessage.Items.Contains("Sorter A Error") || this.MainAlarm.listBoxMessage.Items.Contains("Sorter B Error"))
|
if (this.MainAlarm.listBoxMessage.Items.Contains("Sorter A Error") || this.MainAlarm.listBoxMessage.Items.Contains("Sorter B Error"))
|
||||||
this.ParentForm.TransferData(CommunicationCommand.AlarmNgClearSorter, CommunicationID.MainBoard);
|
this.ParentForm.TransferData(CommunicationCommand.AlarmNgClearSorter, CommunicationID.MainBoard);
|
||||||
if (this.ParentForm.SystemConfig1.IsExternalInputLamp == true && this.ParentForm.IsLampOnDataSend == true)
|
if (this.ParentForm.IsLampOnDataSend == true)
|
||||||
this.ParentForm.TransferData(CommunicationCommand.LampOnContinuousDisable, CommunicationID.MainBoard);
|
this.ParentForm.TransferData(CommunicationCommand.LampOnContinuousDisable, CommunicationID.MainBoard);
|
||||||
if (this.ParentForm.SystemConfig1.IsExternalInputBuzzer == true && this.ParentForm.IsBuzzerOnDataSend == true)
|
if (this.ParentForm.IsBuzzerOnDataSend == true)
|
||||||
this.ParentForm.TransferData(CommunicationCommand.BuzzerOnContinuousDisable, CommunicationID.MainBoard);
|
this.ParentForm.TransferData(CommunicationCommand.BuzzerOnContinuousDisable, CommunicationID.MainBoard);
|
||||||
this.PopUpWarningClose();
|
this.PopUpWarningClose();
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,6 +13,12 @@
|
||||||
기본형 컨베어 고정밀센서 계량기
|
기본형 컨베어 고정밀센서 계량기
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ Ver 3.3.7 by CJY
|
||||||
|
- 2025.05.19
|
||||||
|
- Ver 3.3.6 Modify
|
||||||
|
- (버그수정)바이패스 버그 수정
|
||||||
|
- (버그수정)알람 발생 시, 'CAE' 통신 전송 안하는 버그 수정
|
||||||
|
|
||||||
@ Ver 3.3.6 by CJY
|
@ Ver 3.3.6 by CJY
|
||||||
- 2025.03.04
|
- 2025.03.04
|
||||||
- Ver 3.3.5 Modify
|
- Ver 3.3.5 Modify
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue