-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP][Depends on #242]fix IOBplugin to enable use_velocity_feedback in kinetic #245
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Naoki-Hiraoka can we merge this? or is this only for kinetic and not need/work for melodic?
This PR does NOT work on kinetic. |
@k-okada |
I created #253 to reconstruct old configuration. |
Yes. |
In kinetic,
rtmros_gazebo/hrpsys_gazebo_general/config/SampleRobot.yaml
Line 3 in 7389a49
if
use_velocity_feedback
istrue
, the robot blows off withroslaunch hrpsys_gazebo_general gazebo_samplerobot_no_controllers.launch
.From http://answers.gazebosim.org/question/8371/kobukiturtlebot-doesnt-move-when-given-velocity-commands-in-gazebo-5/?answer=8377#post-id-8377 , I tried using
joint->SetParam("vel")
and joint->SetParam("max_force")
. (e4b8b59)However, the robot was not actuated.
Then, from http://gazebosim.org/tutorials?tut=set_velocity&cat= , I tried using
joint->SetParam("vel")
and joint->SetParam("fmax")
. (4747e03)Though the robot was actuated and not blew off, the robot was not controlled as intended.
For now, we have to set
use_velocity_feedback
tofalse
in kinetic.