====== Raspberry Zero W ======
siehe auch: https://arm-files.devuan.org/
mit Waveshare LCD Display 240x240 px
Unverbindliche Notizen
RaspiOS Lite V12 installiert, 32bit-Version armhf
In einem normalen Raspberry starten und Minimalkonfiguration vornehmen:
  * WLAN aktivieren
  * SSH aktivieren
SPI-Interface
Treiber: ST7789
SPI aktivieren, z.B. über raspi-config
lgpio-Bibliothek installieren: C-Bibliothek für GPIO
https://github.com/gpiozero/lg
Für die Tasten werden diverse GPIOs verwendet.
Programmierung in Python und C möglich.
Wir verwenden Python
Basis:
  - python3-gpiozero z.B. für die Tasten
===== Bluetooth =====
Z.B. zum Koppeln des Telefonhörers
  apt-get install bluetooth bluez-firmware bluez-alsa-utils
In ''rc.local'', ggf. timeout beachten
  hciattach /dev/ttyAMA0 bcm43xx 921600 -
siehe auch:
  * https://github.com/joe-skb7/bluealsa-sysvinit
==== Koppeln ====
Gerät koppeln
bluetoothctl
  pairable on
  scan on
    ... warten bis Gerät sichtbar ...
  scan off
  trust 
  connect 
  exit