Skip to content

uf-mil/dvl-a50-ros-driver

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Water Linked DVL A50 - ROS1 Package

⚠️ This library is for ROS1 and is no longer maintained. ROS2 drivers are available by third parties by searching github

A ROS package for the Water Linked DVL A50. Along with a subscribing client for easy visualization of the communication through ROS.

Water Linked A50 is, by far, the world's smallest commercially available Doppler Velocity Log. With the record-breaking 5 cm min altitude measurability, the A50 is extremely useful for working with tools close to the seabed.

Image of Water Linked A50

Prerequisites

The package has been tested with ROS Kinetic, and should work with most distros of ROS. Although using it with distros older than Hydro may require some tweeking. The package is coded in Python for easier readability, as such you would need to have Python installed. Preferably Python 2.7 as some distros of ROS doesn't support Python 3.

Installation

Assuming you created your catkin workspace at the default location. And have git installed. The below steps should work:

cd ~/catkin_ws/src
git clone -b master https://github.com/waterlinked/dvl-a50-ros-driver.git
cd ~/catkin_ws
catkin_make

Usage

Find the DVLs IP address. Once that's done, the package and it's components can be run by following these steps:

To run the publisher that listens to the TCP port and sends the data to ROS

rosrun waterlinked_a50_ros_driver publisher.py _ip:=192.168.2.95

where TCP_IP should be replaced by the IP of the DVL. You can also display the raw DVL data in the terminal by specifying the argument "do_log_data":

To run the publisher that listens to the TCP port, displays the raw data in the DVL and sends the data to ROS

rosrun waterlinked_a50_ros_driver publisher.py _ip:=192.168.2.95 _do_log_raw_data:=true

To run a subscriber node that listens to the DVL topic. Helpful for debugging or checking if everything is running as it should be. Choose between "subscriber_gui.py" and "subscriber.py". The GUI makes reading data visually much easier. While the non-GUI version makes it easier to read through the code to see how you can implement code yourself.

rosrun waterlinked_a50_ros_driver subscriber_gui.py

GUI Subscriber

Documentation

The node publishes data to the topics: "dvl/json_data" and "dvl/data".

  • dvl/json_data: uses a simple String formated topic that publishes the raw json data coming from the DVL.
  • dvl/data: Uses a custom message type that structures the parsed data following our protocol. Read more about the protocol here: DVL Protocol

rqt_graph of the package in action

The graph illustrates the topics and nodes created when the package is run.

About

Water Linked DVL A50 ROS Python driver

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 66.7%
  • CMake 33.3%