Skip to content

Commit

Permalink
Set read_temperature default False
Browse files Browse the repository at this point in the history
  • Loading branch information
iory committed Nov 4, 2024
1 parent f6df79d commit ba6a6cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ros/kxr_controller/node_scripts/rcb4_ros_bridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ def setup_paths_and_params(self):
self.urdf_path = rospy.get_param("~urdf_path", None)
self.use_rcb4 = rospy.get_param("~use_rcb4", False)
self.control_pressure = rospy.get_param("~control_pressure", False)
self.read_temperature = rospy.get_param("~read_temperature", True) and not self.use_rcb4
self.read_current = rospy.get_param("~read_current", True) and not self.use_rcb4
self.read_temperature = rospy.get_param("~read_temperature", False) and not self.use_rcb4
self.read_current = rospy.get_param("~read_current", False) and not self.use_rcb4
self.base_namespace = self.get_base_namespace()

def setup_urdf_and_model(self):
Expand Down

0 comments on commit ba6a6cd

Please sign in to comment.