例)軸番号1のエンコーダのカウント値を0にプリセットします。
■ C言語
long Ret;
int CountPulse ;
CountPulse = 0 ;
// エンコーダカウントパルス数を0にプリセット
Ret = SmcWSetCountPulse( Id , 1 , CountPulse );
■ Python
Ret = ctypes.c_long()
CountPulse = ctypes.c_int()
CountPulse.value = 0
# エンコーダカウントパルス数を0にプリセット
Ret.value = csmc.SmcWSetCountPulse( Id , 1 , CountPulse )