mirror of
https://github.com/OSURoboticsClub/Rover_2017_2018.git
synced 2025-11-09 02:31:14 +00:00
Changed layout for organizational coherence.
This commit is contained in:
17
software/rover/launcher/random_testing/test_imu.py
Normal file
17
software/rover/launcher/random_testing/test_imu.py
Normal file
@@ -0,0 +1,17 @@
|
||||
import rospy
|
||||
|
||||
from geometry_msgs.msg import Quaternion, Vector3
|
||||
from std_msgs.msg import Float64
|
||||
|
||||
if __name__ == "__main__":
|
||||
rospy.init_node("imu_test")
|
||||
|
||||
|
||||
orientation = Quaternion()
|
||||
orientation_covarience = Float64()
|
||||
|
||||
angular_velocity = Vector3()
|
||||
angular_velocity_covarience = Float64()
|
||||
|
||||
linear_acceleration = Vector3()
|
||||
linear_acceleration_covarience = Float64()
|
||||
Reference in New Issue
Block a user