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

a

parent 04e0c55c
No related branches found
No related tags found
No related merge requests found
......@@ -48,14 +48,15 @@ def quaternion_from_euler(ai, aj, ak):
class vel_from_ros_node(Node):
def __init__(self, my_ep_chassis):
self.hostname = "192.168.1.1"
super().__init__("vel_from_ros")
self.hostname = "192.168.1.1"
self.response = 1
Timer(1, self.check_connection)
self.my_ep_chassis = my_ep_chassis
self.get_vel_from_ros_ = self.create_subscription(
Twist, "/cmd_vel", self.pose_callback, 10)
self.get_vel_from_ros_ = self.create_subscription(Twist, "/cmd_vel", self.pose_callback, 10)
Timer(1, self.check_connection)
......
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