-
Notifications
You must be signed in to change notification settings - Fork 41
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
Use service call for collision-object-publisher #324
Conversation
Thank you! You can squash my commit and your first commit if you like. |
360d0ae
to
4b3903e
Compare
(unix::usleep (* 500 1000))) | ||
(send req :scene :robot_state :attached_collision_objects | ||
(mapcar #'(lambda (msg) | ||
(progn |
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.
progn is not required inside lamda
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.
thank you so much! I updated.
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.
👍
4b3903e
to
af1ffa9
Compare
I checked with baxter and it works with no problem. |
Improve version of #317 (thanks to @eisoku9618)
Use
ApplyPlanningScene
service to operatecollision_objects
andattached_collision_objects
.Currently,
publish and sleep
method is implemented, but the old-style method is not recommended. (moveit/moveit_msgs#40 (comment))We use
service-call
method instead.