Hi @ToWn3r !
I’m running Homebridge on a Raspberry Pi 4 using the official image based on Raspbian.
I installed Pixlet using the method outlined here, which consisted of the following steps:
- Run
wget https://go.dev/dl/go1.17.5.linux-armv6l.tar.gzto download the latest Go for rPI 4 - Run
sudo tar -C /usr/local -xzf go1.17.5.linux-armv6l.tar.gzto extract go in to/usr/local/ - Run
sudo apt update && sudo apt install git libwebp-dev -yto install thelibwebpdependency. - Run
git clone https://github.com/tidbyt/pixletto get pixlet source - Run
cd pixlet && make buildto build Pixlet - Move the built
pixletbinary to/usr/local/bin(which is in the$PATH).