How should I best add a python node to a cpp package?
I have built a C++ package that integrates with turtle_sim and does some cool stuff. Now I'd like it to communicate (via ros::service) with a new python node. Should I add that in /scripts of the existing package (not working, cmake issues with catkin_make) or make a new package (next to existing package in /src)??
Thanks!
B