You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add INS sensors, Fixposition XVN/Vision-RTK2 (#328)
* Bulk rename references to `ros2humble` in the `jazzy` directory to point to their `ros2jazzy` equivalents. Add a new page for the INS sensor array. Add a page for the Fixposition XVN configuration
* Fill out the XVN configuration, add INS sensor topics to the API
* Add odometry topic to the core INS sensors api
Copy file name to clipboardExpand all lines: docs_versioned_docs/version-ros2jazzy/ros/api/sensors_api.mdx
+9
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,15 @@ each new sensor of that type that is added. Internal sensors such as IMU's will
45
45
| sensors/imu\_#/data |[sensor_msgs/Imu](https://github.com/ros2/common_interfaces/blob/jazzy/sensor_msgs/msg/Imu.msg)| Filtered IMU orientation, angular velocity, and linear acceleration data |[System Default](overview.mdx#system-default)|
46
46
| sensors/imu\_#/mag |[sensor_msgs/MagneticField](https://github.com/ros2/common_interfaces/blob/jazzy/sensor_msgs/msg/MagneticField.msg)| IMU magnetic field data |[System Default](overview.mdx#system-default)|
| sensors/ins\_#/imu_0/data |[sensor_msgs/Imu](https://github.com/ros2/common_interfaces/blob/jazzy/sensor_msgs/msg/Imu.msg)| Raw IMU orientation, angular velocity, and linear acceleration data |[Sensor Data](overview.mdx#sensor-data)|
53
+
| sensors/ins\_#/gps_0/fix |[sensor_msgs/NavSatFix](https://github.com/ros2/common_interfaces/blob/jazzy/sensor_msgs/msg/NavSatFix.msg)| Navsat Fix information from the first receiver (if present) |[Sensor Data](overview.mdx#sensor-data)|
54
+
| sensors/ins\_#/gps_1/fix |[sensor_msgs/NavSatFix](https://github.com/ros2/common_interfaces/blob/jazzy/sensor_msgs/msg/NavSatFix.msg)| Navsat Fix information from the second receiver (if present) |[Sensor Data](overview.mdx#sensor-data)|
55
+
| sensors/ins\_#/odom |[nav_msgs/Odometry](https://github.com/ros2/common_interfaces/blob/jazzy/nav_msgs/msg/Odometry.msg)| Odometry data derived from all inputs to the INS |[Sensor Data](overview.mdx#sensor-data)|
Manipulators include all robotic arms and grippers. Unlike sensors, manipulators are not controlled by external drivers. Instead, a hardware controller must be loaded into the controller manager to handle the joint interface to move the specific manipulator joints.
Most sensors can use similar mounting structures. Therefore, we want to keep mounts separate from sensors, such that users could attach their own sensors to existing mounts.
Inertial measurement units are sensors that publish messages of the type `sensor_msgs/Imu`. These messages contain orientation, angular velocity, and/or linear acceleration depending on the device.
0 commit comments