Skip to content
Snippets Groups Projects
Commit 51de7e23 authored by Johannes Mey's avatar Johannes Mey
Browse files

change defaults to simplify debugging

parent 3c9e7346
No related branches found
No related tags found
No related merge requests found
...@@ -32,7 +32,7 @@ int main(int argc, char** argv) ...@@ -32,7 +32,7 @@ int main(int argc, char** argv)
ros::NodeHandle n("connector_node_ros_ccf"); // namespace where the connection_address is ros::NodeHandle n("connector_node_ros_ccf"); // namespace where the connection_address is
auto robotName = getPrivateParameter<std::string>("arm", "arm1"); auto robotName = getPrivateParameter<std::string>("arm", "arm");
ROS_INFO_STREAM("This cell controls arm " << robotName); ROS_INFO_STREAM("This cell controls arm " << robotName);
MoveItRobotArmController controller{ n, NODE_NAME, robotName }; MoveItRobotArmController controller{ n, NODE_NAME, robotName };
...@@ -72,20 +72,7 @@ int main(int argc, char** argv) ...@@ -72,20 +72,7 @@ int main(int argc, char** argv)
controller.sendScene(); controller.sendScene();
}); // send a scene every three seconds }); // send a scene every three seconds
controller.loadScene(getPrivateParameter<std::string>("scene", ros::package::getPath("ccf_immersive_sorting") + "/con" controller.loadScene(getPrivateParameter<std::string>("scene", ros::package::getPath("ccf_immersive_sorting") + "/config/config_scene_ceti-table-1-empty-grey.json"));
"fig/"
"conf"
"ig_"
"scen"
"e_"
"ceti"
"-tab"
"le-"
"1-"
"empt"
"y."
"jso"
"n"));
// only add the scene observer after the base scene has been loaded // only add the scene observer after the base scene has been loaded
controller.addCallback(scene_observer_topic, [&controller](auto msg) { controller.addCallback(scene_observer_topic, [&controller](auto msg) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment