7 lines
266 B
INI
7 lines
266 B
INI
|
#!/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")
|
||
|
exit(gen.generate(PACKAGE, "hand_control", "Estimator"))
|