nh.getParam("destination", destination
时间: 2023-07-22 21:13:04 浏览: 73
android_serialport_api串口通讯demo
3星 · 编辑精心推荐
这是一个ROS(机器人操作系统)中获取参数的代码片段。它使用`getParam()`函数从ROS参数服务器中获取名为"destination"的参数值,并将其存储在变量`destination`中。参数服务器是ROS中用来存储和共享参数的中央存储区域,可以在运行时动态更改参数的值。在这个例子中,代码希望获取名为"destination"的参数值并将其存储在`destination`变量中供后续使用。
阅读全文