Skip to content

Commit f349580

Browse files
committed
typo in clik
1 parent fb2512d commit f349580

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ controller_manager:
4545
max_linear_velocity: 0.3
4646
max_angular_velocity: 0.3
4747
# CLIK parameters
48-
click_dt: 0.1 # integration time step
49-
click_it_max: 50 # maximum number of iterations for each control step
50-
click_eps: 2e-4 # convergence threshold
48+
clik_dt: 0.1 # integration time step
49+
clik_it_max: 50 # maximum number of iterations for each control step
50+
clik_eps: 2e-4 # convergence threshold
5151
clik_filter_alpha: 0.5 # low-pass filter alpha for the output (lower it to avoid motor noise)
5252

5353
end_effector_link: "lbr_link_ee"

kuka_clik_controller/src/kuka_clik_controller.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ KukaClikController::on_init() {
3333
m_max_linear_velocity);
3434
RCLCPP_WARN(get_node()->get_logger(), "Max angular velocity: %f",
3535
m_max_angular_velocity);
36-
RCLCPP_WARN(get_node()->get_logger(), "CLIK alpha filter: %f",
37-
m_max_angular_velocity);
36+
RCLCPP_WARN(get_node()->get_logger(), "CLIK parameters: dt: %f, it_max: %d, eps: %f, filter_alpha: %f",
37+
m_click_dt, m_click_it_max_, m_click_eps_, m_clik_filter_alpha_);
3838

3939
return rclcpp_lifecycle::node_interfaces::LifecycleNodeInterface::
4040
CallbackReturn::SUCCESS;

0 commit comments

Comments
 (0)