class JointSpeed

August 13, 2019 ยท View on GitHub

Member values

Member nameData typeDescription
joint_identifieruint32Joint identifier
valuefloat32Joint speed (in degrees per second)
durationuint32Duration constraint. If not 0, allows to set a limit (in seconds) to the JointsSpeed (not implemented yet)

Member functions

Function nameReturn typeInput typeDescription
joint_identifier()uint32voidReturns the current value of joint_identifier. If the joint_identifier is not set, returns 0.
set_joint_identifier()voiduint32Sets the value of joint_identifier. After calling this, joint_identifier() will return value.
clear_joint_identifier()voidvoidClears the value of joint_identifier. After calling this, joint_identifier() will return 0.
value()float32voidReturns the current value of value. If the value is not set, returns 0.
set_value()voidfloat32Sets the value of value. After calling this, value() will return value.
clear_value()voidvoidClears the value of value. After calling this, value() will return 0.
duration()uint32voidReturns the current value of duration. If the duration is not set, returns 0.
set_duration()voiduint32Sets the value of duration. After calling this, duration() will return value.
clear_duration()voidvoidClears the value of duration. After calling this, duration() will return 0.

Parent topic: Base (C++)