-
Notifications
You must be signed in to change notification settings - Fork 11
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
Add documentation on msg generation #5
Comments
@knuesel, can you update the documentation if anything changes when you add the action messages / rework message generation. I've put the above information on pub.dev now. |
OK! Not sure if I'll have time to work on it this week, but I'll keep it in mind anyway. |
Yeah, no hurries. I was just putting some basic documentation on the README, and wanted to link you into this issue so that we can make sure the documentation stays up to date if anything changes. |
I've left the "big changes" on the side for now since it works, might revisit in the future. I didn't notice anything to change in the documentation. |
Thats fine, at some point an example or something for Actions would be great. |
Then in might make sense to move the Coffee test to the dartros repository (in |
https://github.com/TimWhiting/gendart is a message generation package for dartros. I need to more fully document how to use it.
Essentially the basics are to clone the gendart repository into your catkin workspace, and then run
catkin_make
. As long as some catkin package depends on message generation it should generate messages. I'm trying to remember if there was anything else I needed to make it work.The generated messages will be in the devel folder of your workspace more specifically:
devel/share/gendart/ros/{name_of_msg_package}
.You can depend on this in your dart node via a path dependency.
Assuming your dart node is in the src folder this would look like this:
Then to use it to publish an image you might do something like this:
The text was updated successfully, but these errors were encountered: