Skip to content

Commit

Permalink
multi: added imu related messages
Browse files Browse the repository at this point in the history
  • Loading branch information
pcdangio committed Aug 18, 2020
1 parent b069672 commit a1e4f90
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ add_message_files(
gnss_fix.msg
gnss_position.msg
gnss_track.msg
accelerometer.msg
gyroscope.msg
magnetometer.msg
temperature.msg
)

# Add service files.
Expand Down
5 changes: 5 additions & 0 deletions msg/accelerometer.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# A 3D measurement of linear acceleration.

float64 x # The linear acceleration in the X direction [m/s^2]
float64 y # The linear acceleration in the Y direction [m/s^2]
float64 z # The linear acceleration in the Z direction [m/s^2]
5 changes: 5 additions & 0 deletions msg/gyroscope.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# A 3D measurement of angular velocity.

float64 x # The angular velocity about the X axis [rad/s]
float64 y # The angular velocity about the Y axis [rad/s]
float64 z # The angular velocity about the Z axis [rad/s]
5 changes: 5 additions & 0 deletions msg/magnetometer.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# A 3D measurement of the local magnetic field.

float64 x # The magnetic field strength in the X direction [T]
float64 y # The magnetic field strength in the Y direction [T]
float64 z # The magnetic field strength in the Z direction [T]
3 changes: 3 additions & 0 deletions msg/temperature.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Indicates an instantaneous temperature reading.

float64 temperature # The measured temperature [C]

0 comments on commit a1e4f90

Please sign in to comment.