Why is my_turtle alive even after I finished it?
I am lerning ROS from scratch following this: http://wiki.ros.org/ROS/Tutorials/Und...
first I did:
$ rosnode list
and the output was:
/rosout
then I started the Turtle:
$ rosrun turtlesim turtlesim_node
$ rosnode list
and the output was:
/rosout
/turtlesim
then I killed the Turtle doing control+C
and started a new turtle with my custom name:
$ rosrun turtlesim turtlesim_node __name:=my_turtle
bust afer calling rosnode list I see 3 turtles running, but the oldone is not there since I can not do a ping on it... what am doing wrong?
Thanks