We are setting up the packages using the ROS Development Studio (rds.theconstructsim.com). No installation required. Just a couple of git clone, a catkin_make compilation and a source, and you are done. And the best thing, it will work for all of you because it does not depend of your computer configuration. You can even do that with a Mac (like in the video).
Here you have a small example of how to use the scale variable in the mesh tag to scale 3D models. Here you have the answer in Gazebo Answers: http://answers.gazebosim.org/question…
In this video, we are showing how to get the updated values of a parameter in runtime.
Step 1. Create a project in ROS Development Studio(ROSDS)
We can do any ROS development we want easily, without setting up environment locally in ROSDS and that’s the reason why we will use ROSDS for this tutorial. If you haven’t had an account yet. You can create one here for free now. After logging in, let’s begin our journey by clicking on the create new project and call it test_parameter_server.
Step 2. Create a new package for testing
Now, let’s create a new package for testing with the following command
cd ~/catkin_ws/src
catkin_create_pkg testing_params roscpp
Then we create a new file called testing_params_node.cpp under /tesing_params/src with copying and pasting the following code.