What does this code mean? calllib('phidget21', 'CPhidgetAdvancedServo_setEngaged', handle, 1, 0);
1 回表示 (過去 30 日間)
古いコメントを表示
calllib('phidget21', 'CPhidgetAdvancedServo_setEngaged', handle, 1, 0);
0 件のコメント
回答 (1 件)
Vishwas
2017 年 12 月 6 日
"calllib" is used to call a function in shared library. In your case,
'phidget21' is the name of the shared library.
'CPhidgetAdvancedServo_setEngaged' is the name of the function inside that library
'handle, 1, 0' are arguments passed into that function.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Robotics についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!