Docking the Pioneer LX with ROSARIA

asked 2020-02-27 05:00:06 -0500

fendrbud gravatar image

I have implemented the ROS navigation stack on my Pioneer LX robot with ROSARIA, and I now want to implement docking functionality. The previous ros-arnl interface provided docking functionality by calling the rosarnl_node/dock service, so I'm looking for a similar implementation with ROSARIA. The way I believe it worked was that the robot navigates to a predefined location in front of the docking station, facing towards it. It then recognizes the shape of the docking station with the laser, rotates 180 degrees and backs onto the docking station with help of its sonar sensors.

Are there any kind of similar implementation of this with ROSARIA? I'm not quite sure where to begin with this problem...

edit retag flag offensive close merge delete

Comments

Hi @fendrbud,

Rosaria is a mere interface to ROS for ARIA control software implemented on most Adept MobileRobots. There is no such a service implementing docking, thus the high level controller must be implemented on custom ROS nodes.

I see different problems to solve in order to achieve that behavior

  1. Setting up and tune the LX navigation stack.
  2. Define how you are going to represent your docking stations and how to go to them from any point in the world. That can be achieved by defining your docks as special goals that can be feed to the move_base.
  3. Implement the high level to decide when to go to the nearest dock station. Rosaria provides the /battery_state_of_charge topic to known when the battery needs a charge. You can implement your logic around that value.
  4. Deal with the docking task. I do not have a lot of experience dealing with this kind ...
(more)
Weasfas gravatar image Weasfas  ( 2020-02-27 06:31:05 -0500 )edit