\documentclass{report} \author{\href{mailto:me@xengineering.eu}{me@xengineering.eu}} \title{soundbox documentation} \date{\input{../date.txt}- version \input{../version.txt}} \usepackage{graphicx} \graphicspath{ {./diagrams/} } \usepackage{hyperref} \usepackage{parskip} \begin{document} \maketitle \newpage \tableofcontents \newpage \listoffigures \newpage \chapter{Introduction} \label{chap:introduction} \texttt{soundbox} is a small Raspberry Pi based device with a micro USB power input and two cinch connectors as audio output. It can be used to connect classic audio systems to a WLAN network. Music or other audio content can be streamed to the \texttt{soundbox} device. Using multiple devices allows to build up a multi-room audio setup. This project is Open Hardware\footnote{\href{https://en.wikipedia.org/wiki/Open-source\_hardware}{https://en.wikipedia.org/wiki/Open-source\_hardware}} and licensed under the CERN Open Hardware License S (see \autoref{license}). \section{Current state} The following features are supported by the given \texttt{soundbox} version. \begin{itemize} \item audio streaming with original sound quality \item multi room audio without audible delay \item 3D printed case to protect internals \item discovery service to find the IP address of the device \item safe shutdown by power cut \end{itemize} Nevertheless the usage of \texttt{soundbox} is restricted by the limitations below. \begin{itemize} \item only the command line tool \texttt{ffmpeg} is currently supported to stream content to \texttt{soundbox} devices \item no user friendly way to set the WLAN name (SSID) and password \item network discovery requires the \texttt{lldpd} service for Unix operating systems or other client services for the Link~Layer~Discovery~Protocol \item no user friendly update mechanism \end{itemize} Improvements regarding these limitations are planned but future progress cannot be guaranteed. \section{Getting soundbox} Further information might be available via the \texttt{soundbox} project page\footnote{\href{https://xengineering.eu/git/soundbox}{https://xengineering.eu/git/soundbox}}. The source code can be browsed on the cgit instance\footnote{\href{https://cgit.xengineering.eu/soundbox}{https://cgit.xengineering.eu/soundbox}} hosting the \texttt{soundbox} code. The complete source code can be retrieved with the version control software Git\footnote{\href{https://git-scm.com/}{https://git-scm.com/}}. \begin{verbatim} git clone https://cgit.xengineering.eu/soundbox \end{verbatim} The included \texttt{README.md} file describes how to generate all required files from the source code. This is currently the only way to get them. This PDF file is one of the resulting files. \chapter{User guide} In addition to \autoref{chap:introduction} `\nameref{chap:introduction}` the following sections document everything required to use \texttt{soundbox} devices. \section{Discover soundbox IP address} If the IP address of the soundbox device is not known it can be discovered via the Link Layer Discovery Protocol (LLDP). This can be done with a software like lldpd\footnote{\href{https://lldpd.github.io/}{https://lldpd.github.io/}}. If the corresponding service is running the currently discovered devices can be looked up with \texttt{lldpcli}. Root privileges are required to use this command. \begin{verbatim} lldpcli show neighbors \end{verbatim} A device with the system name \texttt{soundbox.local} should show up. Every 30 seconds a new discovery packet is emitted by soundbox. Thus it can take up to 30 seconds until it shows up. \section{Playing audio} \label{playing-audio} Audio can be streamed to \texttt{soundbox} devices with the \texttt{ffmpeg} command. Audio files or internet stream addresses can be passed as input. Since \texttt{ffmpeg} supports multiple outputs, the part enclosed in square brackets can be repeated multiple times with different \texttt{soundbox} device IP addresses. \begin{verbatim} ffmpeg -re -i [-acodec flac -f ogg tcp://:5316]... \end{verbatim} More details about FFmpeg streaming can be read from the FFmpeg streaming guide\footnote{\href{https://trac.ffmpeg.org/wiki/StreamingGuide}{https://trac.ffmpeg.org/wiki/StreamingGuide}}. \chapter{Production Guide} The given chapter contains documentation about how to produce a \texttt{soundbox} device. \section{Bill of materials} The parts below are required for one \texttt{soundbox} device. \begin{itemize} \item Raspberry Pi Zero 2 W \item HiFiBerry DAC+ Zero \item micro SD card (at least 200 MB capacity) \item 3D printed parts from \texttt{production.stl} \item 8 x M3x3 clinch nuts \item 4 x M3x22 ISO 4762 bolts \item 4 x M3x10 ISO 4762 bolts \item (if not already on the Raspberry Pi) 1 x 20x2 or 2 x 20x1 pin headers \end{itemize} The following accessories are optional. \begin{itemize} \item micro USB power supply \item audio adapter cable(s) from Cinch to other interfaces \item adapter mini HDMI to other interfaces \end{itemize} \section{Alpine Linux installation on a Raspberry Pi} Alpine Linux for the Raspberry Pi can be downloaded from the Alpine Linux\footnote{\href{https://alpinelinux.org/}{https://alpinelinux.org/}} download page. This section describes the installation procedure for the variant targeting the AArch64 architecture provided as a compressed tar archive. It can be downloaded and verified against a checksum with the \texttt{wget} and \texttt{sha256sum} utilities. \begin{verbatim} wget https://dl-cdn.alpinelinux.org/alpine/v3.19/releases\ /aarch64/alpine-rpi-3.19.0-aarch64.tar.gz wget https://dl-cdn.alpinelinux.org/alpine/v3.19/releases\ /aarch64/alpine-rpi-3.19.0-aarch64.tar.gz.sha256 sha256sum -c alpine-rpi-3.19.0-aarch64.tar.gz.sha256 \end{verbatim} The image has to be flashed to a SD card which will be inserted into the Raspberry Pi. This SD card has to be put into a Linux PC first. In Linux every SD card is represented as a block device like \texttt{sda} or \texttt{sdb} with a file path like \texttt{/dev/sda}. Possibly existing partitions on the SD card are represented with that path and a number as suffix like in \texttt{/dev/sda1}. The program \texttt{lsblk} gives an overview of the currently connected block devices. The correct device name for the SD card can be identified by its size. \begin{verbatim} $ lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS sda 8:0 1 59,5G 0 disk `-sda1 8:1 1 59,5G 0 part \end{verbatim} The SD card has to be formatted with a single bootable FAT32 partition. This can be achieved with the command line program \texttt{parted}. First a \texttt{msdos} partition table has to be created followed by a partition taking the full size of the SD card. The boot flag of the partition is enabled and a FAT32 file system is created with \texttt{mkfs.vfat}. All of these operations require \texttt{root} privileges. \textbf{Warning:} These operations might cause data loss if the wrong device is specified. It has to be asserted that not the wrong block device (e.g. the PC disk) is chosen. \begin{verbatim} parted /dev/ mklabel msdos parted /dev/ mkpart primary fat32 0% 100% parted /dev/ toggle 1 boot mkfs.vfat /dev/1 \end{verbatim} After the file system is created the downloaded Alpine Linux tar archive has to be extracted to it. A temporary mount point can be created with \texttt{mktemp}. After mounting with \texttt{mount} the archive can be extracted with \texttt{tar}. Finally the file system is unmounted and it is waited for all buffered write operations to the SD card with \texttt{sync}. Also these command require \texttt{root} privileges. \begin{verbatim} mountpoint=$(mktemp -d) mount /dev/1 "$mountpoint" tar -C "$mountpoint" -xf alpine-rpi-3.19.0-aarch64.tar.gz umount /dev/1 sync \end{verbatim} Afterwards the SD card can be ejected. The installation is completed while the system configuration is not covered. \section{Configure Alpine Linux for soundbox} An Alpine Linux installation can be configured as a soundbox host with the steps explained in the given section. For this configuration the SD card with an Alpine Linux installation has to be inserted into the Raspberry Pi. Furthermore a keyboard, monitor and USB power supply has to be connected. A mouse is not required. As soon as the power supply is attached text from the boot process should be shown on the monitor. \subsection{Basic Alpine Linux setup} After logging in with the username \texttt{root} and no password basic system configuration on Alpine Linux can be done interactively with \texttt{setup-alpine}. The Alpine Linux installation guide\footnote{\href{https://wiki.alpinelinux.org/wiki/Installation}{https://wiki.alpinelinux.org/wiki/Installation}} contains further details. A diskless installation should be chosen for soundbox. This makes sure that the operating system is running from random access memory (RAM) and thus the system can be powered off by just removing the power supply. \begin{verbatim} setup-alpine \end{verbatim} These changes are only temporary until they are made persistent as described in section~\ref{lbu-persistence}. \subsection{Package installation} soundbox requires packages from the Alpine Linux community package repository. Since this is not enabled by default it has to be done manually. This can be done by editing the \texttt{/etc/apk/repositories} file with an editor like \texttt{vi}. The hash sign \texttt{\#} in front of the URL to the community repository has to be removed. Instead also \texttt{sed} can remove this sign on a fresh installation quite easily since the community repository is the only one with such a sign in front of it. \begin{verbatim} sed -i 's/^#//g' /etc/apk/repositories \end{verbatim} With an enabled community repository all required packages for soundbox can be installed. The list with required packages can be written to the \texttt{/etc/apk/world} file with \texttt{echo}. Running \texttt{apk add} after it will install all of these packages including their dependencies and removes everything else. This makes sure that always exactly the same set of packages is used for a soundbox device. \begin{verbatim} echo 'alpine-base alsa-utils alsaconf busybox-mdev-openrc chrony ffplay iw lldpd lldpd-openrc openssh openssl wpa_supplicant' > /etc/apk/world apk add \end{verbatim} \subsection{LLDP network discovery} To make the soundbox device discoverable inside the network the Link Layer Discovery Protocol (LLDP) is used. With \texttt{echo} a new configuration file for the \texttt{lldpd} software can be added. After configuration the \texttt{lldpd} service is enabled via \texttt{rc-update} to start by default with the next reboot. \begin{verbatim} echo 'configure system hostname soundbox.local configure lldp agent-type nearest-customer-bridge' \ > /etc/lldpd.d/soundbox.conf rc-update add lldpd default \end{verbatim} \subsection{Audio configuration} The only user on a soundbox device is \texttt{root}. Even that super user has to be added to the \texttt{audio} group to be able to play sound via ALSA. This can be achieved with \texttt{addgroup}. \begin{verbatim} addgroup root audio \end{verbatim} soundbox uses the HiFiBerry shield to output high-quality audio. This shield needs to be enabled as an audio output by specifying a Devicetree overlay in the Raspberry Pi configuration file with \texttt{echo}. Since this file is stored on the SD card only which is mounted as read-only it has to be remounted with the read-write option first. \begin{verbatim} mount -o remount,rw /media/mmcblk0p1 echo 'dtoverlay=hifiberry-dac' >> /media/mmcblk0p1/config.txt \end{verbatim} If the builtin audio of e.g. a Raspberry Pi 4 should be used another Devicetree option has to be inserted instead: \begin{verbatim} echo 'dtparam=audio=on' >> /media/mmcblk0p1/config.txt \end{verbatim} \subsection{soundbox script} soundbox uses the command \texttt{ffplay} for playback. A script has to be added to call the command over and over again to allow new connections. The script can be added with \texttt{echo} and is made executable with \texttt{chmod}. \texttt{lbu add} will make sure that the script will be made persistent by calling \texttt{lbu commit} later (see section~\ref{lbu-persistence}). \begin{verbatim} echo '#!/bin/ash set -e while true do ffplay -autoexit tcp://0.0.0.0:5316?listen done' > /usr/local/bin/soundbox chmod 755 /usr/local/bin/soundbox lbu add /usr/local/bin/soundbox \end{verbatim} This makes the command \texttt{soundbox} available on the system. \subsection{Service configuration} To receive audio streams via the network it is required to run the \texttt{soundbox} command continuously. This is possible by creating a service file for the OpenRC init system with \texttt{echo}, making that executable with \texttt{chmod} and enabling the service with \texttt{rc-update}. Also here \texttt{lbu add} makes sure that the service file will be made persistent later (see section~\ref{lbu-persistence} for details). \begin{verbatim} echo '#!/sbin/openrc-run name="soundbox" command="/usr/local/bin/soundbox" command_args="" pidfile="/run/soundbox.pid" command_background=true' > /etc/init.d/soundbox chmod 755 /etc/init.d/soundbox rc-update add soundbox default lbu add /etc/init.d/soundbox \end{verbatim} This will make sure the soundbox script is run on every boot. \subsection{Persistence of changes and reboot}\label{lbu-persistence} Since a diskless Alpine Linux installation is preferred for soundbox the changes have to be made persistent with \texttt{lbu}. Rebooting after it makes sure the SD card is again mounted in read-only mode and all Kernel-affecting changes can be applied. \begin{verbatim} lbu commit -d reboot \end{verbatim} After this reboot the soundbox device should be able to play audio like described in section~\ref{playing-audio}. \chapter{Developer documentation} \section{Versioning} This device is versioned with Semantic Versioning\footnote{\href{https://semver.org}{https://semver.org}}. The resulting version numbers have the format \texttt{..} like e.g. \texttt{2.0.3}. While Semantic Versioning is usually targeted at software only it is here used for the whole device. This includes mechanical, electronic and software aspects as shown in figure \ref{diagram:device-semver}. \begin{figure}[h] \centering \includegraphics[width=\textwidth]{device-semver.pdf} \caption{API for a device versioned with Semantic Versioning} \label{diagram:device-semver} \end{figure} This versioning makes sure that users do not have to care about the device internals at all. Devices can be seen as atomic from a user's perspective. This level of granularity is choosen because users are not expected to disassemble devices or to care about the software internals. \appendix \chapter{Changelog}\label{changelog} All notable changes to \texttt{soundbox} will be documented here. \texttt{soundbox} adheres to Semantic Versioning\footnote{\href{https://semver.org/spec/v2.0.0.html}{https://semver.org/spec/v2.0.0.html}}. \section{0.1.0 - 2024-02-02} \href{https://cgit.xengineering.eu/soundbox/tag/?h=0.1.0}{https://cgit.xengineering.eu/soundbox/tag/?h=0.1.0} \subsection{Added} \begin{itemize} \item soundbox device with 3D-printed case \item lossless WLAN-based multi-room audio streaming \item network discovery based on the LLDP protocol \item operating system resist power cut without any risk \end{itemize} \chapter{License}\label{license} \texttt{\input{../LICENSE.txt}} \end{document}