ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
1

Using Aria for Pioneer robot

asked 2012-10-30 20:37:56 -0500

Blake gravatar image

updated 2014-01-28 17:14:06 -0500

ngrennan gravatar image

Hello.

I got a probem with running Pioneer. Please help me. I installed a package ROSARIA and it works well. But what i want to do is to move the robot by keyboard. By the way, I found that there are many source code in the Aria package such as ArActionKeydrive.cpp ArActionInput.cpp etc. I want to know how to use these useful codes at the same time.

thank you.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2012-11-06 19:57:28 -0500

malvarado gravatar image

When you say you installed ROSARIA do you mean you installed it on your machine connected to the robot. To control the robot you need to publish a Twist message on the cmd_vel topic. I believe the topic will be in the RosAria namespace (i.e. it will be /RosAria/cmd_vel) but you can confirm that with rostopic list.

You need to make sure that your keyboard drives nodes are publishing on the correct topic. You can again figure out which topic the keyboard are publishing on using rostopic list. If they are not publishing on the same topic that the ROSARIA node on your machine is subscribing to you need to remap the publishing topic either via the command line with rosrun or using a launch file.

As a quick example on how to remap topics if I had a node named node1 which published on topic /foo and I wanted to remap it to publish on /foo/bar I would run

rosrun <your package> node1 foo:=/foo/bar

You can read more about remapping here Remapping Arguments

edit flag offensive delete link more

Question Tools

Stats

Asked: 2012-10-30 20:37:56 -0500

Seen: 1,111 times

Last updated: Nov 06 '12