mirror of
https://github.com/CopterExpress/clover.git
synced 2026-06-08 10:34:32 +00:00
11 lines
242 B
Python
11 lines
242 B
Python
#!/usr/bin/env python
|
|
PACKAGE = "clover"
|
|
|
|
from dynamic_reconfigure.parameter_generator_catkin import *
|
|
|
|
gen = ParameterGenerator()
|
|
|
|
gen.add("enabled", bool_t, 0, "if optical flow enabled", True)
|
|
|
|
exit(gen.generate(PACKAGE, "clover", "Flow"))
|