Skip to content

Latest commit

 

History

History
60 lines (44 loc) · 1.08 KB

README.md

File metadata and controls

60 lines (44 loc) · 1.08 KB

RoboteQ ROS Driver

ROS driver for serial Roboteq motor controllers. This driver is suitable for use with Roboteq's Advanced Digital Motor Controllers, and it was implememted to be compatible with ROS Indigo Igloo distribution.

Compatible Devices

  • ax500
  • ax1500
  • ax2500
  • ax2850
  • ax3500

Usage

The node subscribes to the folloing topics:

Topic: roboteq_cmd_vel
Type: geometry_msgs::Twist
Contents:
	linear.x;
	linear.y;
	angular.z;
Topic: io_steer_angle
Type: geometry_msgs::Twist
Contents:
	angular.z;

The node publishes to the following topics:

Topic: roboteq_raw_vel
Type: geometry_msgs::Twist
Contents:
	linear.x
	linear.y
	angular.z
Topic: roboteq_estimated_pos
Type: geometry_msgs::Twist
Contents:
	linear.x
	linear.y
	angular.z

The ROSlaunch script includes all the configurable parameters.

Credits

The code was ported from the Player - Stage Drivers from here and here.