2015-05-28 13:24:07 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
PACKAGE = "hand_control"
|
|
|
|
from dynamic_reconfigure.parameter_generator_catkin import *
|
|
|
|
gen = ParameterGenerator()
|
|
|
|
gen.add("reverse", bool_t, 0, "Pose the kinect in parallel with the arm")
|
2015-05-28 19:10:13 +02:00
|
|
|
gen.add("reverse_angle", bool_t, 0, "Change the angle sign")
|
2015-05-28 13:24:07 +02:00
|
|
|
exit(gen.generate(PACKAGE, "hand_control", "Estimator"))
|