Python and C++ nodes [closed]
Hi!. I'm usung ubuntu 10.04 and ROS electric. I'm trying to move the turtlesim in the beginners_tutorials with voice using the pocketsphinx package. All nodes in pocketsphinx are made in Python, and as you should know turtlesim nodes are made in C++. I'm programming my node in Python but it can't import the Velocity message from the turtlesim package,(For that I'm using: from turtlesim.msg import Velocity.) My publisher is defined as: self.pub = rospy.Publisher("turtle/command_velocity", Velocity) What am I doing wrong?, Is it possible to publish/subscribe python and c++ nodes between each other?