The ev3dev Brick Manager.
Please report issues or feature requests at https://github.com/ev3dev/ev3dev/issues
Get the code:
Clone of the brickman repo.
git clone git://github.com/ev3dev/brickman cd brickman git submodule update --init --recursive
To build for the EV3:
Install Docker (requires Linux/macOS 10.10.3+/Window 10 Pro)
Install QEMU (Linux only)
sudo apt-get install qemu-user-staticIn the source code directory, run the Docker setup script
./docker/setup.sh $ARCHWhere
$ARCHisarmel(orarmhfif you are building for RPi or BeagleBone). Output will be saved to abuild-$ARCHdirectory.Build the code by running...
docker exec --tty brickman_armel make installCopy the contents of
build-$ARCH/dist/to the EV3 and run it.
To build the desktop test (makes UI development much faster), in a regular terminal, not in Docker:
Install build dependencies:
sudo apt-add-repository ppa:ev3dev/tools sudo apt-get update sudo apt-get install devscripts equivs sudo mk-build-deps --install debian/controlThen...
cmake -P setup.cmake make -C build make -C build run