Skip to content
Snippets Groups Projects
Commit 89e131dd authored by Emil Harlan's avatar Emil Harlan
Browse files

a

parent bee0e819
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,6 @@ class ImuPublisher(Node):
self.msg.linear_acceleration.x = acc_x
self.msg.linear_acceleration.y = acc_y
self.publisher_.publish(self.msg)
self.get_logger().info('Publishing: x' % self.msg.linear_acceleration.x)
......
......@@ -28,7 +28,6 @@ class OdometryPublisher(Node):
def sub_attitude_info_handler(self, attitude_info):
self.yaw, pitch, roll = attitude_info
print("chassis attitude: yaw:{0}, pitch:{1}, roll:{2} ".format(self.yaw, pitch, roll))
......@@ -37,7 +36,6 @@ class OdometryPublisher(Node):
def sub_position_handler(self, position_info):
self.x, self.y, self.z = position_info
print("chassis position: x:{0}, y:{1}, z:{2}".format(self.x, self.y, self.yaw))
self.publish_odometry()
self.publish_transform()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment