- Install raspbian on the pi
- Download latest raspbian installation from raspberrypi.org
wget https://downloads.raspberrypi.org/raspbian_lite_latest
- Flash it to the sdcard
unzip -p ./raspbian_lite_latest | sudo dd of=/dev/sdX bs=4M conv=fsync
- Download latest raspbian installation from raspberrypi.org
- Put country code, wireless network SSID and preshared key into
boot/wpa_supplicant.conf
- Copy all the
boot
directory into the raspberry pi boot partition - Power it up and connect to it via ssh
- Update it and install git and other required packages
sudo touch /var/lib/dpkg/status && sudo apt update && sudo apt upgrade -y && sudo apt install -y git cmake libssl-dev libcurl4-openssl-dev
- Clone this repo into the raspberry
git clone --recurse-submodules https://github.com/Pithone/tapioca
- Compile tapioca software
cd tapioca
mkdir build
cd build
cmake ..
make
- Run tapioca software
./tapioca
The author of the resetmatrix.py script is lucasParis