-
Notifications
You must be signed in to change notification settings - Fork 525
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
Family of X_controllers/JointGroupYController using PIDs #208
Comments
What do you guys think? @ipa-mdl @davetcoleman |
I don't think that we at IPA have the need for these controllers at the moment (@ipa-fxm: ?), but it might be useful for others. IMHO the limit enforcing should be done by the RobotHW implementation. Perhaps it would make sense to implement a chaining mechanism that would add PID controllers to all controllers. |
I thought our current controllers already convert, say, position commands to, say, effort commands? What does this group controller feature do differently? |
The forward (group) controllers do not convert, they pass all data directly. |
The only thing this controller adds compared to For further improvements I can remove the joint limit enforcing and I was also thinking about making it templated over the "Command" and "Output" types. |
Greetings fellow ros-controllers,
I was wondering if there is interest in having grouped controllers that plug to type X joint interfaces while accepting commands for type Y joint interfaces.
These would be useful for robots that are homogenic in their joint interfaces (Effort, for instance) but need to be controlled in some other manner (eg: Position, to keep straight, or Velocity to keep a fixed speed) in cases where the hardware abstraction layers cannot be fiddled with.
Last week I took
effort_controllers/JointPositionController
and combined it withforward_command_controller/ForwardJointGroupCommandController
. Myeffort_controllers/JointGroupPositionController
can be found here:https://github.com/bmagyar/ros_controllers/blob/position-effortgroupcontroller/effort_controllers/src/joint_group_position_controller.cpp
My current implementation is nowhere pretty nor generic, but it works. For example it gets the Valkyrie do these funky moves:
https://www.youtube.com/watch?v=tLCpJvqgtRQ
Your input on this would be much appreciated, thanks!
The text was updated successfully, but these errors were encountered: