Find a file
Jacob Perron 111b062251 Remove Trusty CI job
Since it is EOL.

Signed-off-by: Jacob Perron <jacobmperron@gmail.com>
2019-09-02 12:09:43 -07:00
examples Add cliff sensor example 2019-08-26 21:21:07 -07:00
include/create Add compiler flags '-Wall -Wextra -Wpedantic' 2019-09-02 12:09:43 -07:00
src Add compiler flags '-Wall -Wextra -Wpedantic' 2019-09-02 12:09:43 -07:00
tests Add unit tests (gtests) 2018-04-06 21:44:28 -07:00
.travis.yml Remove Trusty CI job 2019-09-02 12:09:43 -07:00
CHANGELOG.rst 1.6.1 2018-04-21 00:17:39 -07:00
CMakeLists.txt Default to C++11 2019-09-02 12:09:43 -07:00
config.cmake.in Refactor cmake files 2017-12-17 18:37:08 -08:00
LICENSE Code cleanup 2016-02-12 17:44:30 -08:00
mainpage.dox Add mainpage.dox 2016-10-16 16:30:44 -07:00
package.xml Update maintainer info 2019-08-26 20:16:43 -07:00
README.md Update README 2019-08-26 22:15:00 -07:00

libcreate

C++ library for interfacing with iRobot's Create 1 and 2 as well as most models of Roomba. create_autonomy is a ROS wrapper for this library.

Build Status

Build Status

Dependencies

Install

    sudo apt-get install build-essential cmake libboost-system-dev libboost-thread-dev

    # Optionally, install gtest for building unit tests
    sudo apt-get install libgtest-dev
    cd /usr/src/gtest
    sudo cmake CMakeLists.txt
    sudo make
    sudo cp *.a /usr/lib

Serial Permissions

User permission is requried to connect to Create over serial. You can add your user to the dialout group to get permission:

    sudo usermod -a -G dialout $USER

Logout and login again for this to take effect.

Build

Note, the examples found in the "examples" directory are built with the library.

cmake

    git clone https://github.com/AutonomyLab/libcreate.git
    cd libcreate
    mkdir build && cd build
    cmake ..
    make -j

catkin

Requires catkin_tools.

    mkdir -p create_ws/src
    cd create_ws
    catkin init
    cd src
    git clone https://github.com/AutonomyLab/libcreate.git
    catkin build

Running Tests

To run unit tests, execute the following in the build directory:

    make test

Known Issues

  • Clock and Schedule buttons are not functional. This is a known bug related to the firmware.
  • Inaccurate odometry angle for Create 1 (#22)