User talk:S152751: Difference between revisions

From Control Systems Technology Group
Jump to navigation Jump to search
Line 10: Line 10:
*
*


== Installed software ==
== Installing from scratch ==
*Install ubuntu. Version used: 18.04 LTS
*Update ubuntu
*Install VisualStudio Code (via ubuntu software)
*Install CMAKE (via ubuntu software. Version >3.1)
*Install catkin
** sudo apt-get update
** sudo apt-get install catkin
*Install gcc > 4.8
** sudo apt-get update
** sudo apt-get install gcc
*Install clang
** sudo apt-get update
** sudo apt-get install clang
*Install curl
** sudo apt-get update
** sudo apt-get install curl
*Install git
** sudo apt-get update
** sudo apt-get install git
*REBOOT SYSTEM
*Install gazebo (command will install latest version. Currently 9)
** curl -ssL http://get.gazebosim.org | sh
*Install ORCA. Note this will also install iDynTree, qpOASES and Eigen3. Git clone will make a folder called 'orca'
**git clone https://github.com/syroco/orca
**cd orca
**mkdir build ; cd build
**cmake .. -DCMAKE_BUILD_TYPE=Release
**cmake --build .
**sudo cmake --build . --target install
 
 
 
 
*Windows 10, in dual boot system with Ubuntu (see below)
*Windows 10, in dual boot system with Ubuntu (see below)
*Ubuntu 18.04 LTS  
*Ubuntu 18.04 LTS  

Revision as of 16:49, 23 March 2020

Franka Emika Panda setup

This page contains an overview of the steps taken in installing and configuring the franka emika panda robot.

The Franka Emika Panda robot will be referred to as 'Panda'

Page is under construction.

Installed system hardware

  • Panda robot, serial: 289830-1326311
  • Panda control box

Installing from scratch

  • Install ubuntu. Version used: 18.04 LTS
  • Update ubuntu
  • Install VisualStudio Code (via ubuntu software)
  • Install CMAKE (via ubuntu software. Version >3.1)
  • Install catkin
    • sudo apt-get update
    • sudo apt-get install catkin
  • Install gcc > 4.8
    • sudo apt-get update
    • sudo apt-get install gcc
  • Install clang
    • sudo apt-get update
    • sudo apt-get install clang
  • Install curl
    • sudo apt-get update
    • sudo apt-get install curl
  • Install git
    • sudo apt-get update
    • sudo apt-get install git
  • REBOOT SYSTEM
  • Install gazebo (command will install latest version. Currently 9)
  • Install ORCA. Note this will also install iDynTree, qpOASES and Eigen3. Git clone will make a folder called 'orca'
    • git clone https://github.com/syroco/orca
    • cd orca
    • mkdir build ; cd build
    • cmake .. -DCMAKE_BUILD_TYPE=Release
    • cmake --build .
    • sudo cmake --build . --target install



  • Windows 10, in dual boot system with Ubuntu (see below)
  • Ubuntu 18.04 LTS
  • Ubuntu 5.0.21-rt16 kernel. Note: use ubuntu 5.0.21-rt16.signed during boot
  • CMake >3.1
  • GCC >4.8
  • Clang >3.8
  • ORCAEditing User talk:S152751 (section) - Control Systems Technology Group
  • iDYnTree (dependency of ORCA)
  • qpOASES (dependency of ORCA)
  • Eigen 3 (dependency of ORCA)
  • Gazebo-9
  • Libfranka
  • ros-melodic
  • FCI installed on robot control

Install manuals

Installation of ORCA and dependencies: [1]

Installation of libfranka: [2]

Extra steps taken to achieve signed rt kernel: [3] + disable secure boot in BIOS

Notes

check_urdf /path/to/file.urdf can be used to check urdf file itself

Simulating fixed based panda robot needs a intermediate link (e.g. a table) between robot base and world (workaround)