|
@@ -30,7 +30,7 @@ class BaseController:
|
|
|
pid_params['wheel_diameter'] = rospy.get_param("~wheel_diameter", 0.058)
|
|
|
pid_params['wheel_track'] = rospy.get_param("~wheel_track", 0.126)
|
|
|
pid_params['encoder_resolution'] = rospy.get_param("~encoder_resolution", 11)
|
|
|
- pid_params['gear_reduction'] = rospy.get_param("~gear_reduction", 103)
|
|
|
+ pid_params['gear_reduction'] = rospy.get_param("~gear_reduction", 46)
|
|
|
pid_params['AWheel_Kp'] = rospy.get_param("~AWheel_Kp", 15)
|
|
|
pid_params['AWheel_Kd'] = rospy.get_param("~AWheel_Kd", 15)
|
|
|
pid_params['AWheel_Ki'] = rospy.get_param("~AWheel_Ki", 0)
|
|
@@ -116,7 +116,6 @@ class BaseController:
|
|
|
rospy.loginfo("Started base controller for a base of " + str(self.wheel_track) + "m with " + str(self.encoder_resolution) + " ticks per rev")
|
|
|
rospy.loginfo("Publishing odometry data at: " + str(self.rate) + " Hz using " + str(self.base_frame) + " as base frame")
|
|
|
|
|
|
-
|
|
|
def setup_pid(self, pid_params):
|
|
|
# Check to see if any PID parameters are missing
|
|
|
missing_params = False
|
|
@@ -164,10 +163,6 @@ class BaseController:
|
|
|
|
|
|
time_now = rospy.Time.now()
|
|
|
if time_now > self.t_next:
|
|
|
- #rospy.logwarn("Voltage: %f, Current: %f", float(vol), float(current))
|
|
|
- #vol = self.arduino.detect_voltage()
|
|
|
- #current = self.arduino.detect_current()
|
|
|
- #rospy.logwarn("Voltage: %f, Current: %f", vol, current)
|
|
|
# Read the encoders
|
|
|
try:
|
|
|
if self.use_serial:
|
|
@@ -217,17 +212,6 @@ class BaseController:
|
|
|
quaternion.z = sin(self.th/2.0)
|
|
|
quaternion.w = cos(self.th/2.0)
|
|
|
|
|
|
- # create the odometry transform frame broadcaster.
|
|
|
- # when startup robot_pose_ekf, should disable this broadcaster
|
|
|
- #
|
|
|
- #self.odomBroadcaster.sendTransform(
|
|
|
- # (self.x, self.y, 0),
|
|
|
- # (quaternion.x, quaternion.y, quaternion.z, quaternion.w),
|
|
|
- # rospy.Time.now(),
|
|
|
- # self.base_frame,
|
|
|
- # self.odom_name
|
|
|
- #)
|
|
|
-
|
|
|
odom = Odometry()
|
|
|
odom.header.frame_id = self.odom_name
|
|
|
odom.child_frame_id = self.base_frame
|