diff --git a/ros_arduino_python/src/ros_arduino_python/servo_controller.py b/ros_arduino_python/src/ros_arduino_python/servo_controller.py index c1aa799..b76bf5a 100755 --- a/ros_arduino_python/src/ros_arduino_python/servo_controller.py +++ b/ros_arduino_python/src/ros_arduino_python/servo_controller.py @@ -87,7 +87,7 @@ class Servo(Joint): self.joint_speed_scale_correction = rospy.get_param(namespace + 'joint_speed_scale_correction', 1.0) # Get the initial servo speed in degrees per second - self.servo_speed = radians(rospy.get_param(namespace + 'init_speed', 60.0)) + self.servo_speed = radians(rospy.get_param(namespace + 'init_speed', 60.0)) self.direction = copysign(1, -self.servo_speed)