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.gz
to download the latest Go for rPI 4 - Run
sudo tar -C /usr/local -xzf go1.17.5.linux-armv6l.tar.gz
to extract go in to/usr/local/
- Run
sudo apt update && sudo apt install git libwebp-dev -y
to install thelibwebp
dependency. - Run
git clone https://github.com/tidbyt/pixlet
to get pixlet source - Run
cd pixlet && make build
to build Pixlet - Move the built
pixlet
binary to/usr/local/bin
(which is in the$PATH
).