Hi David,
OK, I see--sorry I read your first post too fast.
The Kobuki uses a new nodelet called
cmd_vel_mux which
allows for multiplexing various cmd_vel input sources such as teleop
versus the navigation stack. I haven't explored using this since I
don't have a Kobuki. However, the problem is that this new setup
means the Kobuki no longer responds to simple Twist commands
published on the /cmd_vel topic. To get around this for now, you
can make a copy of the TurtleBot minimal.launch file and add the
following line near the top:
<remap from="mobile_base/commands/velocity" to="cmd_vel" />
If you have the rbx1 stack from the Github repository, then you can
see that I did this in the file rbx1_bringup/launch/turtlebot_minimal_create.launch.
--patrick