Skip to content

Commit

Permalink
Merge pull request beta-robots#2 from ros-industrial/jade-devel
Browse files Browse the repository at this point in the history
Sync PR
  • Loading branch information
jproberge authored Jul 20, 2018
2 parents c665199 + f17d510 commit f6c8e58
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions robotiq_s_model_articulated_gazebo_plugins/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
cmake_minimum_required(VERSION 2.8.3)
project(robotiq_s_model_articulated_gazebo_plugins)
add_compile_options(-std=c++11)

find_package(catkin REQUIRED COMPONENTS std_msgs gazebo_plugins actionlib tf image_transport control_msgs trajectory_msgs geometry_msgs sensor_msgs roscpp gazebo_ros robotiq_s_model_articulated_msgs)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,18 +173,18 @@ class RobotiqHandPlugin : public gazebo::ModelPlugin

/// \brief Velocity tolerance. Below this value we assume that the joint is
/// stopped (rad/s).
private: static const double VelTolerance = 0.002;
private: static constexpr double VelTolerance = 0.002;

/// \brief Position tolerance. If the difference between target position and
/// current position is within this value we'll conclude that the joint
/// reached its target (rad).
private: static const double PoseTolerance = 0.002;
private: static constexpr double PoseTolerance = 0.002;

/// \brief Min. joint speed (rad/s). Finger is 125mm and tip speed is 22mm/s.
private: static const double MinVelocity = 0.176;
private: static constexpr double MinVelocity = 0.176;

/// \brief Max. joint speed (rad/s). Finger is 125mm and tip speed is 110mm/s.
private: static const double MaxVelocity = 0.88;
private: static constexpr double MaxVelocity = 0.88;

/// \brief Default topic name for sending control updates to the left hand.
private: static const std::string DefaultLeftTopicCommand;
Expand Down

0 comments on commit f6c8e58

Please sign in to comment.