Mitschrift Installation Notfall-Bake RUFUS (V6)
* Raspberry PI 4
* Bookworm
* Display: https://joy-it.net/de/products/RB-TFT3.5 - Pollin
* Installation: [[https://joy-it.net/files/files/Produkte/RB-TFT3.2-V3/RB-TFT-Anleitung_2024-06-04.pdf]]
* Gehäuse: https://www.mediamarkt.de/de/product/_joy-it-rb-tft32-case-gehause-transparent-104066815.html
* TTS
* https://github.com/rhasspy/piper/releases/download/v1.2.0/piper_arm64.tar.gz ==> PI4/64bit
* https://github.com/rhasspy/piper/releases/download/v1.2.0/piper_armv7.tar.gz ==> PI3/32bit
* https://github.com/rhasspy/piper/blob/master/VOICES.md
* Abspielen mit aplay
* Doku: https://github.com/rhasspy/piper
* Beispiel-Erzeugung:
echo 'Hallo! Mein Name ist Karl Hinterhuber, und ich wohne in der Maternusstraße 23a in Höhenberg. Ich benötige dringend medizinische Hilfe. Ich wiederhole: Maternusstraße 23a in Höhenberg' | ./piper --model karlsson.onnx --output-file karlsson.wav
* MQTT
* https://www.elektronik-kompendium.de/sites/raspberry-pi/2709041.htm
* sudo apt install mosquitto mosquitto-clients
* sudo nano /etc/mosquitto/conf.d/local.conf
* listener 1883
* allow_anonymous true
* sudo systemctl enable mosquitto
* sudo systemctl start mosquitto
* mosquitto_sub --quiet -h localhost -t "#" -F "@s-%t-%l-%p" -v
* --quiet ⇒ Keine Fehlermeldungen
* -h wo lauscht der Publisher?
* -t "#" ⇒ Alle topics
* -F Format-String
* @s ⇒ Unix-Timestamp
* %t ⇒ Topic
* %l ⇒ Länge der Nachricht
* %p ⇒ Nachricht
* mosquitto_pub -h 192.168.178.58 -t 112 -m "Notruf!"
* wenn "connection refused, ''sudo systemctl restart mosquitto.service''
* raspi-config
* audio weg auf audio-ausgang
* locale
* expand
* wlan country
* autologin
* screen-blanking
* nachinstallieren
* git
* Automatischer WLAN-connect zur ssid "notfallbox"
*
Vorgehen:
- Image installieren
- Raspi-config ... Localization, Hostname, Expand
- install git, update, upgrade
- TFT Display installieren
- internen WLAN abschalten
- externen wlan dongle
- raspi-config - wlan ssid und passwort
- ping versuchen 10.0.0.1
- mosquitto_pub -h 10.0.0.1 -p 1883 -t Topic -m "Message"