#!/usr/bin/env python PACKAGE = "hand_control" from dynamic_reconfigure.parameter_generator_catkin import * gen = ParameterGenerator() gen.add("max_curvature", double_t, 0, "Maximum curvature of the estimated plane", 0.5, 0., 1.) gen.add("x_minimal_deviation", double_t, 0, "Absolute horizontal movement detection treshold", 0.05, 0.) gen.add("y_minimal_deviation", double_t, 0, "Absolute lateral movement detection treshold", 0.05, 0.) gen.add("z_minimal_deviation", double_t, 0, "Absolute vertical movement detection treshold", 0.1, 0.) gen.add("neutral_alt", double_t, 0, "Reference altitude for vertical movement command", 0.8, 0.) gen.add("min_points_number", int_t, 0, "Minimal number of plane points needed for a valid estimation", 2000, 0) gen.add("up_fact", double_t, 0, "Upward command amplification factor", 1.5, 1) gen.add("theta_minimal_deviation", double_t, 0, "Absolute angular movement detection treshold", 5., 0., 45.) gen.add("angle_vel", double_t, 0, "Angular velocity", 0.002, 0., 10.) gen.add("plan_vel", double_t, 0, "Translation velocity", 2, 0., 10.) gen.add("z_vel", double_t, 0, "Vertical translation velocity", 2, 0., 10.) exit(gen.generate(PACKAGE, "hand_control", "Commander"))