Moved to https://git.opendlv.org.
This repository provides source code to interface with a PS3 controller to broadcast ActuationRequest messages.
You need a C++14-compliant compiler to compile this project. The following dependency is shipped as part of the source distribution:
- libcluon -
This microservice is created automatically on changes to this repository via Docker's public registry for:
To run this microservice using our pre-built Docker multi-arch images to open a Video4Linux-supported camera, simply start it as follows:
docker run --rm -ti --init --net=host --device /dev/input/js0 chalmersrevere/opendlv-device-ps3controller-multi:v0.0.7 --device=/dev/input/js0 --freq=100 --acc_min=0 --acc_max=50 --dec_min=0 --dec_max=-10 --steering_min=-10 --steering_max=10 --cid=111 --verbose
To build this software, you need cmake, C++14 or newer, libx11-dev, and make.
Having these preconditions, just run cmake
and make
as follows:
mkdir build && cd build
cmake -D CMAKE_BUILD_TYPE=Release ..
make && make test && make install
- This project is released under the terms of the GNU GPLv3 License