Built from enormousFM: a Raspberry Pi and Arduino based framework for networked multichannel sound, light, and motion.
Runs logic, audio duties, OSC. Leverages the bop library.
Provides admin services (updating, rebooting, shutdown).
- Choose OS RASPBERRY PI OS LITE (64-BIT)
- Set username and password
- configure wireless LAN
- enable SSH
- Flash SD
# login
ssh pi@raspberrypi.local
# update
sudo apt-get update
sudo apt-get upgrade
# set gpu memory to 16 (if applicable)
sudo raspi-config
# install jack2
sudo apt-get install jackd2
# install git
sudo apt-get install git
# install pure-data dependencies
sudo apt-get install build-essential automake autoconf libtool gettext libasound2-dev libjack-jackd2-dev tcl tk wish
# install puredata 0.54+
cd ~
git clone https://github.com/pure-data/pure-data.git
cd ./pure-data/
./autogen.sh
./configure --enable-jack
make
sudo make install
# install pd externals if required
sudo apt-get install pd-comport
# add externals to local extra folder
mkdir ~/pd-externals
cd ~/pd-externals
sudo cp /lib/pd/extra/* ./
sudo chown -R pi ./*
#install pip
sudo apt-get install pip
#make python virtual environment
cd ~
python3 -m venv ./venv
# install python dependencies
./venv/bin/pip install pyOSC3
# goto home directory
cd ~
# clone this repo (or your fork)
git clone https://github.com/zealtv/vane.git
# !copy samples if required
# run update script
sudo ~/vane/scripts/update.sh
# pi should copy rc.local and reboot with jack, puredata, and helper.py running