What does this code mean? calllib('phidget21', 'CPhidgetAdvancedServo_setEngaged', handle, 1, 0);
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
calllib('phidget21', 'CPhidgetAdvancedServo_setEngaged', handle, 1, 0);
0 comentarios
Respuestas (1)
Vishwas
el 6 de Dic. de 2017
"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 comentarios
Ver también
Categorías
Más información sobre Robotics en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!