RobotControlExample.h 311 B

123456789101112131415
  1. #ifndef ROBOT_CONTROL_EXAMPLE_H
  2. #define ROBOT_CONTROL_EXAMPLE_H
  3. enum EnumRobotControls
  4. {
  5. ROBOT_VELOCITY_CONTROL=0,
  6. ROBOT_PD_CONTROL,
  7. ROBOT_PING_PONG_JOINT_FEEDBACK,
  8. };
  9. class CommonExampleInterface* RobotControlExampleCreateFunc(struct CommonExampleOptions& options);
  10. #endif //ROBOT_CONTROL_EXAMPLE_H