-
Notifications
You must be signed in to change notification settings - Fork 12
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
Purge 'side' parameter #1083
Purge 'side' parameter #1083
Conversation
""" | ||
def __init__(self, robot_name, tf_listener, get_joint_states, side): | ||
def __init__(self, robot_name, tf_listener, get_joint_states, name): |
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.
To make this interface truly generic we should make it so that not all parameters, actions, tf_frames are linked via the arm name. Then we should allow these things as parameters to the interface. But that might be something for another day...
I don't think the the fact that we dont do this like that anywhere else is reason to change this. |
I don't mind having the sensor topic as argument. I only mind that we force a prefix of the robot name on the topic. |
That is something we do with every topic/action/service. That is not something unusual in robot_skills |
No, we don't do this in tue_robocup/robot_skills/src/robot_skills/perception.py Lines 23 to 31 in 9bece90
|
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.
Please rebase before approval
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.
Wait for CI before merging
All tests are passed when all repositories are checked out to fix/side_param |
We dont want to refer to left or right arms because not every robot has two arms which are symetrical. For that reason we want to remove the parameter 'side' and replace it with something more general
Must be merged together with: tue-robotics/hero_description#11 and tue-robotics/hero_bridge#23
I think this should be tested on the real robot, just to be safe...