Skip to content

joshuachen6/RoboOp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RoboOp Library

Library for autonomous operating robots.

Install Instructions

CMake

Builds the shared library and the test binary.

cmake -B build
cmake --build build

Python

Copies over the source and header files into their respective folders in your current directory.

python setup.py

Features

Spline path generation

Generate quintic spline paths by inputting control points.

std::shared_ptr<Trajectory> path = TrajectoryBuilderFactory::create({{0, 0}, 0})
        .to({{10, 10}, 0.25})
        .to({{20, 10}, 0})
        .build();

Splines

Ramsete

The Ramsete controller is currently under testing.

Tank Drive

Tank drive implementation for path following.

Future Plans

  • Localization implementations
  • Motion profiling
  • GUI visualizer (Separate Project)

Releases

No releases published

Packages

No packages published

Languages