parent
9183f4f8ab
commit
68ace6daf3
|
|
@ -165,7 +165,33 @@ namespace INT69DB_2A.Forms
|
||||||
|
|
||||||
if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Korean)
|
if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Korean)
|
||||||
{
|
{
|
||||||
|
if (this.ParentForm.SystemConfig.StepMotorType == (int)DataStore.StepMotorType.MDrive)
|
||||||
|
{
|
||||||
|
this.labelDiscription1.Text = "Rc : 모터 구동 전류(값은 퍼센트로 정의, 최대값 : 100)";
|
||||||
|
this.labelDiscription2.Text = "Hc : 모터 중지 전류(값은 퍼센트로 정의, 최대값 : 100)";
|
||||||
|
this.labelDiscription3.Text = "Ms : 마이크로스텝 분해능을 제어";
|
||||||
|
this.labelDiscription4.Text = "Vi : 모든 모션 명령에 대한 초기 속도(Vm값보다 낮게 셋팅되어야 함)";
|
||||||
|
this.labelDiscription5.Text = "Vm : 축이 도달하는 초당 스텝/카운트에서의 최대 속도 지정";
|
||||||
|
this.labelDiscription6.Text = "A : Sec²당 스텝으로 MDrive에 의해 도달되는 최대 가속을 셋팅";
|
||||||
|
}
|
||||||
|
else if (this.ParentForm.SystemConfig.StepMotorType == (int)DataStore.StepMotorType.Moons)
|
||||||
|
{
|
||||||
|
this.labelDiscription1.Text = "CC: 동작시 전류 설정(최대 : 500)";
|
||||||
|
this.labelDiscription2.Text = "PI: 정지시 전류 설정(최대 : CC값의 90%)";
|
||||||
|
this.labelDiscription3.Text = "EG: 1회전당 분해능 설정";
|
||||||
|
this.labelDiscription4.Text = "VE: 초당 회전 속도 설정";
|
||||||
|
this.labelDiscription5.Text = "AC: 가속도 설정(%, 최대: 100)";
|
||||||
|
this.labelDiscription6.Text = "DE: 감속도 설정(%, 최대: 100)";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this.labelDiscription1.Text = "";
|
||||||
|
this.labelDiscription2.Text = "";
|
||||||
|
this.labelDiscription3.Text = "";
|
||||||
|
this.labelDiscription4.Text = "";
|
||||||
|
this.labelDiscription5.Text = "";
|
||||||
|
this.labelDiscription6.Text = "";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.English)
|
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.English)
|
||||||
{
|
{
|
||||||
|
|
@ -194,6 +220,8 @@ namespace INT69DB_2A.Forms
|
||||||
this.buttonEachContinue.Font = new Font("새굴림", 9, FontStyle.Bold);
|
this.buttonEachContinue.Font = new Font("새굴림", 9, FontStyle.Bold);
|
||||||
this.buttonAllContinue.Text = this.buttonEachContinue.Text = "Continue";
|
this.buttonAllContinue.Text = this.buttonEachContinue.Text = "Continue";
|
||||||
|
|
||||||
|
if (this.ParentForm.SystemConfig.StepMotorType == (int)DataStore.StepMotorType.MDrive)
|
||||||
|
{
|
||||||
this.labelDiscription1.Text = "Rc: Motor drive current (%, maximum: 100)";
|
this.labelDiscription1.Text = "Rc: Motor drive current (%, maximum: 100)";
|
||||||
this.labelDiscription2.Text = "Hc: Motor stall current (%, maximum: 100)";
|
this.labelDiscription2.Text = "Hc: Motor stall current (%, maximum: 100)";
|
||||||
this.labelDiscription3.Text = "Ms: Controls the microstep resolution";
|
this.labelDiscription3.Text = "Ms: Controls the microstep resolution";
|
||||||
|
|
@ -201,6 +229,25 @@ namespace INT69DB_2A.Forms
|
||||||
this.labelDiscription5.Text = "Vm: Sets maximum speed (steps/counts per second)";
|
this.labelDiscription5.Text = "Vm: Sets maximum speed (steps/counts per second)";
|
||||||
this.labelDiscription6.Text = "A: Sets maximum acceleration";
|
this.labelDiscription6.Text = "A: Sets maximum acceleration";
|
||||||
}
|
}
|
||||||
|
else if (this.ParentForm.SystemConfig.StepMotorType == (int)DataStore.StepMotorType.Moons)
|
||||||
|
{
|
||||||
|
this.labelDiscription1.Text = "CC: Current setting during operation (maximum: 500)";
|
||||||
|
this.labelDiscription2.Text = "PI: Current setting during standstill (maximum: 90% of CC value)";
|
||||||
|
this.labelDiscription3.Text = "EG: Resolution per revolution setting";
|
||||||
|
this.labelDiscription4.Text = "VE: Speed setting per second";
|
||||||
|
this.labelDiscription5.Text = "AC: Acceleration setting (%, maximum: 100)";
|
||||||
|
this.labelDiscription6.Text = "DE: Deceleration setting (%, maximum: 100)";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this.labelDiscription1.Text = "";
|
||||||
|
this.labelDiscription2.Text = "";
|
||||||
|
this.labelDiscription3.Text = "";
|
||||||
|
this.labelDiscription4.Text = "";
|
||||||
|
this.labelDiscription5.Text = "";
|
||||||
|
this.labelDiscription6.Text = "";
|
||||||
|
}
|
||||||
|
}
|
||||||
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
|
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
|
||||||
{
|
{
|
||||||
this.labelTitle.Text = "设置电机";
|
this.labelTitle.Text = "设置电机";
|
||||||
|
|
@ -233,6 +280,8 @@ namespace INT69DB_2A.Forms
|
||||||
this.buttonDownloadExistingMotorEach.Text = "下载每个";
|
this.buttonDownloadExistingMotorEach.Text = "下载每个";
|
||||||
this.buttonDownloadExistingMotorAll.Text = "大量下载";
|
this.buttonDownloadExistingMotorAll.Text = "大量下载";
|
||||||
|
|
||||||
|
if (this.ParentForm.SystemConfig.StepMotorType == (int)DataStore.StepMotorType.MDrive)
|
||||||
|
{
|
||||||
this.labelDiscription1.Text = "Rc:电机驱动电流(%,最大值:100)";
|
this.labelDiscription1.Text = "Rc:电机驱动电流(%,最大值:100)";
|
||||||
this.labelDiscription2.Text = "Hc:电机堵转电流(%,最大值:100)";
|
this.labelDiscription2.Text = "Hc:电机堵转电流(%,最大值:100)";
|
||||||
this.labelDiscription3.Text = "Ms:控制微步分辨率";
|
this.labelDiscription3.Text = "Ms:控制微步分辨率";
|
||||||
|
|
@ -240,6 +289,25 @@ namespace INT69DB_2A.Forms
|
||||||
this.labelDiscription5.Text = "Vm:指定轴可达到的最大速度(以步数/每秒计数为单位)";
|
this.labelDiscription5.Text = "Vm:指定轴可达到的最大速度(以步数/每秒计数为单位)";
|
||||||
this.labelDiscription6.Text = "A:设置 MDrive 可达到的最大加速度(以每秒步数²为单位)";
|
this.labelDiscription6.Text = "A:设置 MDrive 可达到的最大加速度(以每秒步数²为单位)";
|
||||||
}
|
}
|
||||||
|
else if (this.ParentForm.SystemConfig.StepMotorType == (int)DataStore.StepMotorType.Moons)
|
||||||
|
{
|
||||||
|
this.labelDiscription1.Text = "CC:运行电流设定值(最大值:500)";
|
||||||
|
this.labelDiscription2.Text = "PI:静止电流设定值(最大值:CC 值的 90%)";
|
||||||
|
this.labelDiscription3.Text = "EG:每转分辨率设定值";
|
||||||
|
this.labelDiscription4.Text = "VE:每秒速度设定值";
|
||||||
|
this.labelDiscription5.Text = "AC:加速度设定值(%,最大值:100)";
|
||||||
|
this.labelDiscription6.Text = "DE:减速度设定值(%,最大值:100)";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this.labelDiscription1.Text = "";
|
||||||
|
this.labelDiscription2.Text = "";
|
||||||
|
this.labelDiscription3.Text = "";
|
||||||
|
this.labelDiscription4.Text = "";
|
||||||
|
this.labelDiscription5.Text = "";
|
||||||
|
this.labelDiscription6.Text = "";
|
||||||
|
}
|
||||||
|
}
|
||||||
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Japanese)
|
else if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.Japanese)
|
||||||
{
|
{
|
||||||
this.labelTitle.Text = "モㅡタㅡ";
|
this.labelTitle.Text = "モㅡタㅡ";
|
||||||
|
|
@ -277,6 +345,8 @@ namespace INT69DB_2A.Forms
|
||||||
this.buttonDownloadExistingMotorEach.Text = "ダウンロㅡド(個別)";
|
this.buttonDownloadExistingMotorEach.Text = "ダウンロㅡド(個別)";
|
||||||
this.buttonDownloadExistingMotorAll.Text = "ダウンロㅡド(全体)";
|
this.buttonDownloadExistingMotorAll.Text = "ダウンロㅡド(全体)";
|
||||||
|
|
||||||
|
if (this.ParentForm.SystemConfig.StepMotorType == (int)DataStore.StepMotorType.MDrive)
|
||||||
|
{
|
||||||
this.labelDiscription1.Text = "Rc:モㅡタ駆動電流(%、最大値:100)";
|
this.labelDiscription1.Text = "Rc:モㅡタ駆動電流(%、最大値:100)";
|
||||||
this.labelDiscription2.Text = "Hc:モㅡタ停止電流(%、最大値:100)";
|
this.labelDiscription2.Text = "Hc:モㅡタ停止電流(%、最大値:100)";
|
||||||
this.labelDiscription3.Text = "Ms:マイクロステップ分解能を制御";
|
this.labelDiscription3.Text = "Ms:マイクロステップ分解能を制御";
|
||||||
|
|
@ -284,6 +354,25 @@ namespace INT69DB_2A.Forms
|
||||||
this.labelDiscription5.Text = "Vm:最大速度指定(1秒あたりのステップ/カウント)";
|
this.labelDiscription5.Text = "Vm:最大速度指定(1秒あたりのステップ/カウント)";
|
||||||
this.labelDiscription6.Text = "A:最大加速を設定";
|
this.labelDiscription6.Text = "A:最大加速を設定";
|
||||||
}
|
}
|
||||||
|
else if (this.ParentForm.SystemConfig.StepMotorType == (int)DataStore.StepMotorType.Moons)
|
||||||
|
{
|
||||||
|
this.labelDiscription1.Text = "CC:動作時の電流設定(最大:500)";
|
||||||
|
this.labelDiscription2.Text = "PI:停止時の電流設定(最大:CC値の90%)";
|
||||||
|
this.labelDiscription3.Text = "EG:1回転あたりの分解能設定";
|
||||||
|
this.labelDiscription4.Text = "VE:1秒あたりの回転速度の設定";
|
||||||
|
this.labelDiscription5.Text = "AC:加速度設定(%、最大:100)";
|
||||||
|
this.labelDiscription6.Text = "DE:減速度設定(%、最大:100)";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this.labelDiscription1.Text = "";
|
||||||
|
this.labelDiscription2.Text = "";
|
||||||
|
this.labelDiscription3.Text = "";
|
||||||
|
this.labelDiscription4.Text = "";
|
||||||
|
this.labelDiscription5.Text = "";
|
||||||
|
this.labelDiscription6.Text = "";
|
||||||
|
}
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@
|
||||||
- 2026.03.12
|
- 2026.03.12
|
||||||
- Ver 6.6.1 Modify
|
- Ver 6.6.1 Modify
|
||||||
- (버그수정)단순 로그인 기능 사용 시, admin 비번 변경하면 Level1로 변하는 버그 수정 -> 수정 안되어있어서 수정함
|
- (버그수정)단순 로그인 기능 사용 시, admin 비번 변경하면 Level1로 변하는 버그 수정 -> 수정 안되어있어서 수정함
|
||||||
|
- 모터설정 '선택된 임펠러 개별 프로그램 다운로드' 하단 설명 Moons / MDrive 각각 설정
|
||||||
|
|
||||||
@ Ver 6.6.1 by LSJ
|
@ Ver 6.6.1 by LSJ
|
||||||
- 2026.01.16
|
- 2026.01.16
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue