SmcWSetCountPulse


機能

エンコーダのカウント値をプリセットします。

 

書式

Ret = SmcWSetCountPulse( Id , AxisNo , CountPulse )

 

引数

Id [ C, C++: short ] [ Python: ctypes.c_short ]

SmcWInit 関数で取得したデバイスIDを指定します。

 

AxisNo [ C, C++: short ] [ Python: ctypes.c_short ]

軸番号を指定します。

 

OutPulse [ C, C++: int ] [ Python: ctypes.c_int ]

エンコーダのカウントプリセット値を設定します。
設定可能範囲 : -134,217,728 ~+134,217,727

 

戻り値

Ret [ C, C++: long ] [ Python: ctypes.c_long ]

0

正常終了

0以外

異常終了

参照:エラーコード詳細

 

説明

軸が動作中の場合、この関数は実行できません。

 

使用例

軸番号1のエンコーダのカウント値を0にプリセットします。

 

C, C++

long Ret;

int CountPulse ;

CountPulse = 0 ;

Ret = SmcWSetCountPulse( Id , AxisNo , CountPulse );

 

Python

Ret = ctypes.c_long()

CountPulse = ctypes.c_int()

CountPulse.value = 0

Ret.value = csmc.SmcWSetCountPulse( Id , AxisNo , CountPulse )

 

関連項目