UBC Sailbot's custom interfaces ROS package. To add custom_interfaces
to another ROS package, follow the instructions
here.
The terminology that we use in this document are the following:
.msg
or .srv
file associated with that interface.ROS messages and services used across many ROS packages in the project.
Interface | Used In |
---|---|
HelperAISShip | AISShips |
HelperBattery | Batteries |
HelperDimension | HelperAISShip |
HelperGenericSensor | GenericSensors |
HelperHeading | DesiredHeading, GPS, HelperAISShip |
HelperLatLon | GPS, HelperAISShip, Path |
HelperROT | HelperAISShip |
HelperSpeed | GPS, HelperAISShip, WindSensor |
ROS messages and services used in our boat simulator.
Topic | Type | Publisher | Subscriber(s) |
---|---|---|---|
mock_kinematics |
SimWorldState | Simulator Physics Engine | Simulator Visualizer |
Action | Client Node | Server Node |
---|---|---|
SimRudderActuation | Simulator Physics Engine | Simulator Low Level Controller |
SimSailTrimTabActuation | Simulator Physics Engine | Simulator Low Level Controller |
The ROS2 common_interfaces repository defines a set of
packages which contain common interface files. Since we are using the Humble version of ROS2, see the humble
branch.
These interfaces can be used in this repository or as a reference for ideas and best practices.
Package | Possible Usage |
---|---|
diagnostic_msgs | Could be used for website sensors |
geometry_msgs | Simulator, Local Pathfinding |
sensor_msgs | Reference for CAN Transceiver |
std_msgs | Reference |
std_srvs | Reference |
visualization_msgs | Reference |
For more detail on the usefulness of each package, see this issue comment. If you are interested in creating your own custom message or service, see the ROS Humble documentation.