In this video we will learn how to install the ROSBot Gazebo simulation in just 5 minutes and how to launch the mapping and navigation demos that it includes.
[irp posts=”8512″ name=”RDP 008: Building Accessible ROSbots With Jack Pien”]
RELATED LINKS
▸ Husarion web page: https://husarion.com/
▸ Husarion ROSbot simulation git: https://github.com/husarion/ROSbot_description
▸ Robot Ignite Academy: https://www.robotigniteacademy.com/
▸ ROS Navigation in 5 days online course: https://goo.gl/bbNXRH
▸ ROS Development Studio: https://www.theconstruct.ai/rds-ros-development-studio/
On this ROS Message tutorial video we show you how to avoid errors when creating a new ROS msg.
Platform Used (RDS): https://goo.gl/MC2Ycs
Learn ROS Basics in 5 Days here: https://goo.gl/37j5H7
Check all our ROS courses available at: https://goo.gl/J15J3Y
// ROS DEVELOPERS CONFERENCE 2018 IS READY !!
https://goo.gl/8SaVQ3
The ROS Developers Conference is the online event for all the ROS Developers. A two days online conference, where you will be practicing at the same time with the speakers. You will connect online to the conference and use our online system to learn and practice ROS from the experts.
On this ROS tutorial video we show you how you can easily modify, in the ROS launch file, the initial position where the robot will spawn at in the Gazebo simulation world.
Platform Used (RDS): https://goo.gl/cMwAhV
// Want to learn ROS fast?
Go to the Robot Ignite Academy and learn ROS fast. How fast? What about 5 days? Is that fast enough?
Check all our ROS courses available at: https://goo.gl/hx2Dbd
// ROS DEVELOPERS CONFERENCE 2018 IS READY !!
https://goo.gl/avnnM6
The ROS Developers Conference is the online event for all the ROS Developers. A two days online conference, where you will be practicing at the same time with the speakers. You will connect online to the conference and use our online system to learn and practice ROS from the experts.
In this series of videos we are going to learn how to use MoveIt! package with industrial robots. In this series we are going to use the Sawyer robot by Rethink Robotics.
Remember that you can follow all the steps with me at the same time by using the ROS Development Studio, without having to install anything in your system, and by using any operating system (yes, you can learn ROS with Windows!!!).
The instructions and steps provided here can be also made in your local computer with a proper installation of ROS.
[irp posts=”8707″ name=”Learning MoveIt! with Sawyer robot – #Part 1″]
// PART 2 VIDEO CONTENT
In this second video, we are showing: ▸ How to create the MoveIt! configuration package for Sawyer the robot, using the moveit_setup_assistant
▸ Previous video of this series (part 1) about how to install the Sawyer simulation: https://youtu.be/3wnX7teWIFQ
▸ Online course about how to learn to do ROS manipulation in 5 days, including grasping: https://goo.gl/v21WgA
ROS Manipulation is the term used to refer to any robot that manipulates something in its environment. The main goal of this Course is to teach you the basic tools you need to know in order to be able to understand how ROS Manipulation works, and teach you how to implement it for any manipulator robot.
We show you a manual method to tune a PID for a robot that uses ROS Control to control its joints with a position controller. This method is very artisan but it is enough for most of the cases.
We do not teach how ROS Control works in this video. We assume you already know how to configure a joint to work with the ROS controllers.
Step 1. Create a project in ROS Development Studio(ROSDS)
ROSDS helps you follow our tutorial in a fast pace without dealing without setting up an environment locally. If you haven’t had an account yet, you can create a free account here. Let’s call the testing.
Step 2. Tune PID
At first, let’s launch the rrbot simulation from Simulations->RRBot. To control the robot, we also need to launch the control with
roslaunch rrbot_control rrbot_control.launch
You will have to tune the pid value in the rrbot_contorl.yaml file in the rrbot_control package under the config.
We can also use rqt_gui to help us tune the parameter.
rosrun rqt_gui rqt_gui
Then open the Tools->graphical tool.
In the gui, let’s send command to the rrbot/joint1_position_controller/command topic to control the robot. The message type is automatically selected to std_msgs/Float64. We’ll change the frequency to 50 Hz, then click +.
Then click the + on the left to unfold the topic and change the expression to sin(i/50)*0.5. Check the box on the left side to start publishing into the topic.
You should see the robot starts to swing it’s arm now.
It’s also possible to plot the message from Plugins->Visualization->Plot
Select the correct topic /rrbot/joint1_position_controller/state/process_value/data then click +. You should see the data sent.
How about the actual value? It’s in the topic /rrbot/joint1_position_controller/state/process_value.
You’ll see that the actual state of the robot didn’t follow the command sent to the robot. That’s the reason why we need to tune the pid value.
Let’s open another tool to help us tune the value at the same time. Go to Plugins->Configuration->Dynamic Reconfigure.
You can change all the pid value in the plugin.
To tune the pid:
We start by increasing the p value to make the controller output more to catch the command.
Increase the d value a bit to make the movement smoother.
You should see the state can synchronize with the command now. You can change the command to see if the controller can follow the command nicely. Then you can save the value in the rrbot_controller.yaml file.
Remember, you have to launch the controller again to apply the new value.
If you need to understand better ROS Control, please take the following course for fast understanding: