TurtleBot3 tutorial (四)

The high level of English is a standard for a top student.

1. Everybody has difficult years, but a lot of times the difficult years end up being the greatest years of your whole entire life if you survive them. 

2. The lucky ones inevitably do not have best of the best. They seek simply the best of what they see on their journey.

3. Do you want to take a leap of faith or become an old man,filled with regret,waiting to die alone?

4. Sometimes you need patience in order to find true happiness. It won't come fast and it won't come easy, but it will be worth it.

5. Take risks. If you win; you will be happy. If you lose; you will be wise.

6. The reason for people’s traveling is not just to reach a destination, but to enjoy all kinds of pleasures in the journey.

7. Self-confidence leads to success and mind determines destiny.

8. You can’t live your life for other people. You’ve got to do what’s right for you, even if it hurts some people you love. 

9. Your present circumstances don’t determine where you can go; they merely determine where you start.

10. I will live in a house towards the sea, with spring blossoms.

11. No matter how hard the past is, you can always begin again.

Reading books (http://www.pishrobot.com/wp-content/uploads/2018/02/ROS-robot-programming-book-by-turtlebo3-developers-EN.pdf

ROS_Robot_Programming_EN (1~71page)

note: 

1. Ros Setting

(1) The following command needs to be executed every time we open a new terminal window in order to apply the settings to current terminal window.

$ source /opt/ros/kinetic/setup.bash
$ source ~/catkin_ws/devel/setup.bash

(2) To avoid this repetitive task, we can set it to import a setting file when we open a new terminal window every time Additionally, we can configure the ROS network and create quick commands for frequently used commands.

 $ gedit ~/.bashrc

# Set ROS Kinetic
source /opt/ros/kinetic/setup.bash
source ~/catkin_ws/devel/setup.bash
# Set ROS Network
export ROS_HOSTNAME=xxx.xxx.xxx.xxx
export ROS_MASTER_URI=http://${ROS_HOSTNAME}:11311
# Set ROS alias command
alias cw='cd ~/catkin_ws'
alias cs='cd ~/catkin_ws/src'
alias cm='cd ~/catkin_ws && catkin_make'

$ source ~/.bashrc

 

[About the book]

    • Title: ROS Robot Programming (EN) 
    • Subtitle: A Handbook is written by TurtleBot3 Developers
    • Authors: YoonSeok Pyo, HanCheol Cho, RyuWoon Jung, TaeHoon Lim
    • First Edition: Dec 22, 2017
    • Published by ROBOTIS Co.,Ltd.
    • Pages: 487Pages (EN), 496Page (CN)
    • Website: www.robotis.com 269
    • E-mail: [email protected]
    • ISBN: 979-11-962307-1-5 (EN) / 979-11-962307-2-2 (CN)

[Description]

         This book is a ROS robot programming guide based on the experiences we had accumulated from ROS projects like TurtleBot3, OpenCR and OpenManipulator. We tried to make this a comprehensive guide that covers all aspects necessary for a beginner in ROS. Topics such as embedded system, mobile robots, and robot arms programmed with ROS are included. For those who are new to ROS, there are footnotes throughout the book providing more information on the web. Through this book, we hope that more people will be aware of and participate in bringing forward the ever-accelerating collective knowledge of Robotics Engineering.

[This Handbook is written for]

         College students and graduate students who want to learn robot programming based on ROS (Robot Operating system) and also for professional researchers and engineers who work on robot development or software programming.
         We have tried to offer detailed information we learned while working on TurtleBot3 and OpenManipulator. We hope this book will be the complete handbook for beginners in ROS and more people will contribute to the ever-growing community of open robotics.

[What you will learn from this book]
From the basic concept to practical robot application programming

    • ROS Kinetic Kame : Basic concept, instructions and tools
    • How to use sensor and actuator packages on ROS
    • Embedded board for ROS : OpenCR1.0
    • SLAM & Navigation with TurtleBot3
    • How to program a delivery robot using ROS Java
    • OpenManipulator simulation using MoveIt! and Gazebo

[Contents]

      • Chapter 01 Robot Software Platform
      • Chapter 02 Robot Operating System ROS
      • Chapter 03 Configuring the ROS Development Environment
      • Chapter 04 Important Concepts of ROS
      • Chapter 05 ROS Commands
      • Chapter 06 ROS Tools
      • Chapter 07 Basic ROS Programming
      • Chapter 08 Robot/Sensor/Motor
      • Chapter 09 Embedded System
      • Chapter 10 Mobile Robots
      • Chapter 11 SLAM and Navigation
      • Chapter 12 Service Robot
      • Chapter 13 Manipulator

猜你喜欢

转载自www.cnblogs.com/sancai16888/p/9721300.html