Accel メソッド
解説
PTP動作命令 (Go, Jump, Pulse)の加減速度を設定します。
書式
Sub Accel (PointToPointAccel As Integer, PointToPointDecel As Integer, _[JumpDepartAccel As Integer], [JumpDepartDecel As Integer], _[JumpApproAccel As Integer], [JumpApproDecel As Integer])
パラメーター
- PointToPointAccel
最大加速度に対する割合を示す1以上の整数 (単位: %) - PointToPointDecel
最大減速度に対する割合を示す1以上の整数 (単位: %) - JumpDepartAccel
Jump時における退避加速度を示す1以上の整数 (省略可) - JumpDepartDecel
Jump時における退避減速度を示す1以上の整数 (省略可) - JumpApproAccel
Jump時における接近加速度を示す1以上の整数 (省略可) - JumpApproDecel
Jump時における接近減速度を示す1以上の整数 (省略可)
Accel 使用例
VB 例:
m_spel.Accel(50, 50)
m_spel.Go ("pick")
C# 例:
m_spel.Accel(50, 50);
m_spel.Go ("pick");
← A AccelR メソッド →