add a robot joint sensor example, reading joint reaction forces/torques using the shared memory API

This commit is contained in:
erwin coumans
2015-08-24 15:26:29 -07:00
parent 46f161ec02
commit faab737738
3 changed files with 116 additions and 4 deletions

View File

@@ -4,7 +4,8 @@
enum EnumRobotControls
{
ROBOT_VELOCITY_CONTROL=0,
ROBOT_PD_CONTROL=2,
ROBOT_PD_CONTROL,
ROBOT_PING_PONG_JOINT_FEEDBACK,
};
class CommonExampleInterface* RobotControlExampleCreateFunc(struct CommonExampleOptions& options);