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

does diff_drive_controller require a hardware interface?

asked 2018-08-29 11:05:24 -0500

twelker gravatar image

Development Environment:

  • OS: Ubuntu 18.04
  • ROS version: Melodic

Robot:

I have working on this for the 2 weeks or so, but I still haven't quite figured out how ros_control is meant to work outside of tutorials.

Specifically, I have a small robot that I want to control with the diff_drive_control package. Currently the robot has onboard a TREX motor control board with a built in Arduino. I have programmed the Arduino with rosserial so that it reads from a couple rostopics a value between -255 and 255 to control the speed of the wheels on each side of the robot.

Now that I have proven that to work, I would like to replace these rostopics with the output from a differential drive controller. Specifically, I am using the diff_drive_controller package, trying to integrate skid steer into my robot.

I have gone through the tutorials at RobotIgnite Academy, as well as this rather helpful tutorial at https://slaterobots.com/blog/5abd8a1e... , but am still stuck on getting the diff_drive_controller to work.

My question right now is: what is required to run diff_drive_controller? I currently have a launch file, a controllers.yaml file and a urdf file. Do I have to develop a hardware interface c++ class? I just want to treat the robot like it has two wheels (one velocity for each side), and that seems standard enough that I would think the .yaml file would take care of that.

The environment builds, but I get the following message upon using the launch file:

taylorwelker@anshul-omegainfinity:~/rubble_ws$ roslaunch rubble rubble_control.launch
... logging to /home/taylorwelker/.ros/log/bf391328-ab9a-11e8-b7d3-e03f49b1675a/roslaunch-anshul-omegainfinity-2245.log
Checking log directory for disk usage. This may take awhile.
Press Ctrl-C to interrupt
Done checking log file disk usage. Usage is <1GB.

started roslaunch server http://192.168.0.101:33097/

SUMMARY
========

PARAMETERS
 * /ekf_localization/base_link_frame: base_link
 * /ekf_localization/frequency: 50
 * /ekf_localization/imu0: imu/data
 * /ekf_localization/imu0_config: [False, False, Fa...
 * /ekf_localization/imu0_differential: True
 * /ekf_localization/imu0_queue_size: 10
 * /ekf_localization/imu0_remove_gravitational_acceleration: True
 * /ekf_localization/odom0: rubble_velocity_c...
 * /ekf_localization/odom0_config: [False, False, Fa...
 * /ekf_localization/odom0_differential: False
 * /ekf_localization/odom0_queue_size: 10
 * /ekf_localization/odom_frame: odom
 * /ekf_localization/two_d_mode: True
 * /ekf_localization/world_frame: odom
 * /rosdistro: melodic
 * /rosversion: 1.14.3
 * /rubble_joint_publisher/publish_rate: 50
 * /rubble_joint_publisher/type: joint_state_contr...
 * /rubble_velocity_controller/angular/z/has_acceleration_limits: True
 * /rubble_velocity_controller/angular/z/has_velocity_limits: True
 * /rubble_velocity_controller/angular/z/max_acceleration: 25.0
 * /rubble_velocity_controller/angular/z/max_velocity: 2.0
 * /rubble_velocity_controller/cmd_vel_timeout: 0.25
 * /rubble_velocity_controller/enable_odom_tf: False
 * /rubble_velocity_controller/left_wheel: wheel_left_joint
 * /rubble_velocity_controller/linear/x/has_acceleration_limits: True
 * /rubble_velocity_controller/linear/x/has_velocity_limits: True
 * /rubble_velocity_controller/linear/x/max_acceleration: 20.0
 * /rubble_velocity_controller/linear/x/max_velocity: 2.0
 * /rubble_velocity_controller/pose_covariance_diagonal: [0.001, 0.001, 10...
 * /rubble_velocity_controller/publish_rate: 50
 * /rubble_velocity_controller/right_wheel: wheel_right_joint
 * /rubble_velocity_controller/twist_covariance_diagonal: [0.001, 0.001, 0....
 * /rubble_velocity_controller/type: diff_drive_contro...
 * /rubble_velocity_controller/wheel_radius_multiplier: 1.0
 * /rubble_velocity_controller/wheel_separation_multiplier: 1.5

NODES
  /
    controller_spawner (controller_manager/spawner)
    ekf_localization (robot_localization/ekf_localization_node)

auto-starting new master
process[master]: started with pid [2256]
ROS_MASTER_URI=http://localhost:11311

setting /run_id to ...
(more)
edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2018-08-29 11:35:35 -0500

gvdhoorn gravatar image

updated 2018-08-29 11:38:40 -0500

does diff_drive_controller require a hardware interface?

Yes.

Do I have to develop a hardware interface c++ class?

Yes, probably.

I just want to treat the robot like it has two wheels (one velocity for each side), and that seems standard enough that I would think the .yaml file would take care of that.

The kinematics may seem standard enough -- and indeed they are, as that is exactly what diff_drive_controller takes care of for you -- but how would you imagine we could abstract away the specific details of how your robot interfaces with its motion controller / controller boards? There are so many different ways to do that (serial, wireless, gpio, ethernet, some real-time fieldbus, hardwired signals, etc, etc) it is virtually impossible to support all of that out of the box.

That is where the hardware_interface comes in: it provides a standardised API for ros_control to talk to your hardware (without knowing anything about "TREX Robot Controllers" or other specific electronics).

But it does require you -- as the only one with the knowledge of how your robot is put together -- to create such an implementation of the hardware_interface API.


Edit: what you could do however is spend some time trying to find a hardware_interface implementation for a "TREX Robot Controller" that some other user before you has written (and open-sourced).

If you can find such a thing, and it is compatible with the exact model you have, you might be lucky and avoid having to write one yourself.

edit flag offensive delete link more

Comments

Thank you gvdhoorn! I was under the impression that ros controllers simply take in sensor data via rostopic, and output a new command to another rostopic. I already built an interface that takes a rostopic and executes it on them on the motor controller, but not in "hardware_interface" format.

twelker gravatar image twelker  ( 2018-08-29 11:56:05 -0500 )edit

But I guess I will have to rebuild it to fit this required format. Can the interface (read() and write() functions be something as simple as "read from" or "write to" a rostopic? The Arduino should be able to handle it from there.

twelker gravatar image twelker  ( 2018-08-29 11:56:30 -0500 )edit

It's definitely possible to use topics, although it's not often used for 'serious' things, as it makes it immediately impossible to do anything real-time (the real real-time, so deterministic).

But again: I would spend some time trying to find out whether someone has already created something.

gvdhoorn gravatar image gvdhoorn  ( 2018-08-29 12:10:06 -0500 )edit

Btw:

I was under the impression that ros controllers simply take in sensor data via rostopic, and output a new command to another rostopic

the reason it doesn't do that is because of the real-time aspect again, but there is a good chance that a ROS2 version of ros_control will do ..

gvdhoorn gravatar image gvdhoorn  ( 2018-08-29 12:10:50 -0500 )edit

.. exactly that (ie: use topics).

ROS2 has a few features that make this possible without sacrificing potential real-time capabilities.

gvdhoorn gravatar image gvdhoorn  ( 2018-08-29 12:11:23 -0500 )edit

If you're not into ros_control, you could take a look at the differential_drive package. It's somewhat similar, but does use topics.

You won't be able to use any of the ros_control features with it, but perhaps you don't need them.

gvdhoorn gravatar image gvdhoorn  ( 2018-08-29 12:12:47 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2018-08-29 11:02:49 -0500

Seen: 1,595 times

Last updated: Aug 29 '18