Min and max value with ROS2 Parameter
Hi Everyone,
The dynamic reconfigure is not available in ROS2, and its replacement Parameter feature is used. With ROS, .cfg files are used, where parameter's value, min , max and other details can be given. With ROS2, I tried to set parameter with value and its working fine, but is there a way to set min and max value for that parameter? e.g. of .cfg
gen.add ("min_x", double_t, 0, "X coordinate of the minimum point of the box.", -1, -1000, 1000)
Thanks.