git clone https://github.com/RoboticsTeam4904/walter.git
git submodule init
git submodule update
mkdir build && cd build
conan create ../lcm-recipe/ -o lcm:shared=True
conan install .. --build
cmake ..
make -C ..
The binary is then located at bin/walter
and documentation at docs/html/index.html
.
A sample usage would look like:
#include "bot.h"
int main() {
Bot bot{};
bot.move_y(5, 0.2);
bot.rotate(pi/10, pi/3);
bot.execute();
}