  | 
  
    YARP 
   Yet Another Robot Platform 
   | 
           
 | 
 
 
 
 
Go to the documentation of this file.
    9 #ifndef YARP_DEV_CONTROLBOARDWRAPPER_CONTROLBOARDWRAPPERTORQUECONTROL_H 
   10 #define YARP_DEV_CONTROLBOARDWRAPPER_CONTROLBOARDWRAPPERTORQUECONTROL_H 
   26     bool setRefTorques(
const int n_joint, 
const int* joints, 
const double* 
t) 
override;
 
   35 #endif // YARP_DEV_CONTROLBOARDWRAPPER_CONTROLBOARDWRAPPERTORQUECONTROL_H 
  
 
bool getTorqueRange(int j, double *min, double *max) override
Get the full scale of the torque sensor of a given joint.
 
bool setRefTorques(const double *t) override
Set the reference value of the torque for all joints.
 
bool getRefTorques(double *refs) override
Get the reference value of the torque for all joints.
 
bool getMotorTorqueParams(int j, yarp::dev::MotorTorqueParameters *params) override
Get a subset of motor parameters (bemf, ktau etc) useful for torque control.
 
bool getRefTorque(int j, double *t) override
Get the reference value of the torque for a given joint.
 
bool getTorques(double *t) override
Get the value of the torque for all joints (this is the feedback if you have torque sensors).
 
bool getAxes(int *ax) override
Get the number of controlled axes.
 
bool setMotorTorqueParams(int j, const yarp::dev::MotorTorqueParameters params) override
Set a subset of motor parameters (bemf, ktau etc) useful for torque control.
 
bool getTorqueRanges(double *min, double *max) override
Get the full scale of the torque sensors of all joints.
 
bool getTorque(int j, double *t) override
Get the value of the torque on a given joint (this is the feedback if you have a torque sensor).
 
Interface for control boards implementing torque control.
 
bool setRefTorque(int j, double t) override
Set the reference value of the torque for a given joint.