GithubHelp home page GithubHelp logo

h-mobility-robotics's Introduction

robotics-course

  1. Dependencies
    1. Manual Installation
    2. Installation via rosdep
  2. Getting Started
    1. Clone
    2. Build
    3. (Optional) Vscode Include Path
  3. 사용되는 로봇 descriptions
  4. 폴더별 내용
  5. References

Dependencies

Manual Installation

  • Eigen (for Kinematics, Pick_n_place, etc.)

    sudo apt install libeigen3-dev
  • Moveit and Visual tools (for Kinematics, Workspace, etc.)

    sudo apt install ros-melodic-moveit\
        ros-melodic-moveit-visual-tools\
        ros-melodic-rviz-visual-tools\
        ros-melodic-joint-state-publisher\
        ros-melodic-joint-state-publisher-gui\
        ros-melodic-robot-state-publisher
  • yaml-cpp (for IMU tutorial)

    mkdir ~/external_libs; cd ~/external_libs
    git clone https://github.com/jbeder/yaml-cpp.git
    mkdir yaml-cpp/build; cd yaml-cpp/build
    cmake ..
  • Controller interface (for OpenBase)

    sudo apt install ros-melodic-controller-interface\
        ros-melodic-effort-controllers\
        ros-melodic-joint-state-controller\
        ros-melodic-gazebo-msgs
  • PCL (for Lidar tutorial)

    sudo apt install ros-melodic-pcl-conversions\
        ros-melodic-pcl-ros
  • gTest (for kinematics_demo)

    sudo apt install libgtest-dev cmake
    cd /usr/src/gtest
    sudo cmake CMakeLists.txt
    sudo make
    sudo cp *.a /usr/lib

Installation via rosdep

http://wiki.ros.org/rosdep

Getting Started

Clone

Clone this repository into your catkin_ws/src. (How to "git clone" including submodules?)

git clone --recursive https://github.com/rise-lab-skku/robotics-course.git

Build

catkin_make를 사용해도 되지만 이것보다는 catkin build를 더욱 추천.

  • 이미 catkin_make를 사용하던 workspace에서 catkin build로 바꾸려면 build, devel 폴더를 삭제하고 catkin build를 시도하면 된다.
  • catkin build 명령어를 찾을 수 없다고 나오는 경우, sudo apt-get install python-catkin-tools를 설치하면 된다.
  • 병렬적으로 빌드하려는 경우, catkin build -j32 (최대 32개의 job을 동시에 빌드)
  • 특정 패키지만 빌드하려는 경우, catkin build {패키지 이름}

(Optional) Vscode Include Path

c_cpp_properties.json

"includePath": [
    "${workspaceFolder}/**",
    "/opt/ros/melodic/include/**",
    "/usr/include/**",
    "~/catkin_ws/devel/include/**",
],

사용되는 로봇 descriptions

robots 폴더 내용

  • puma560_description
    • Forked from here
    • urdf에 <collision>태그가 아예 없으면 moveit이 <visual>태그로 충돌을 감지하기 때문에, 충돌을 무시하려면 <collision>태그에 더미를 넣어야 함
  • puma560_moveit_config
    • Generated package using MoveIt Assistant
    • Planning group name: puma_560
  • puma560_w_collision_description
  • puma560_w_collision_moveit_config
    • Generated package using MoveIt Assistant
    • Planning group name: puma_560
  • rrr_description
  • rrr_moveit_config
    • Generated package using MoveIt Assistant
    • Planning group name: rrr
  • scara_description
  • scara_moveit_config
    • Generated package using MoveIt Assistant
    • Planning group name: scara

폴더별 내용

References

h-mobility-robotics's People

Contributors

ryul1206 avatar shinjinjae avatar ohilho avatar jiyou384 avatar ssw0536 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.