-
Notifications
You must be signed in to change notification settings - Fork 73
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
Update according to changes to Python-ROS 2 API #82
base: humble
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.
Thanks so much for your contribution! Just a few very minor comments here.
@@ -70,9 +68,9 @@ def __init__( | |||
topic_dxl_joint_states: str = 'dynamixel/joint_states', | |||
topic_base_joint_states: str = 'mobile_base/joint_states', | |||
use_nav: bool = False, | |||
logging_level: LoggingSeverity = LoggingSeverity.INFO, | |||
logging_level: LoggingSeverity = LoggingSeverity.DEBUG, |
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.
Revert this change.
logging_level: LoggingSeverity = LoggingSeverity.DEBUG, | |
logging_level: LoggingSeverity = LoggingSeverity.INFO, |
|
||
group_info: RobotInfo.Response = self.future_group_info.result() | ||
self.pan_name = group_info.joint_names[0] | ||
self.tilt_name = group_info.joint_names[1] | ||
pan_limits = [group_info.joint_lower_limits[0], group_info.joint_upper_limits[0]] | ||
tilt_limits = [group_info.joint_lower_limits[1], group_info.joint_upper_limits[1]] | ||
pan_limits = [group_info.joint_lower_limits[0], |
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 revert all changes like this one that do not affect how the program works. Indentation fixes are okay to keep in.
Additional followup to #67 and #68
Also some minor fixes including
Fixes #81