mirror of
https://github.com/OSURoboticsClub/Rover_2017_2018.git
synced 2025-11-08 18:21:15 +00:00
Added package for the current testing gps. Also added a testing launcher folder
This commit is contained in:
17
rover/launcher/random_testing/test_imu.py
Normal file
17
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