mitschrift
Mitschrift Installation Notfall-Bake RUFUS (V6)
- Raspberry PI 4
- Bookworm
- Display: https://joy-it.net/de/products/RB-TFT3.5 - Pollin
- TTS
- Abspielen mit aplay
- 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
- 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“
mitschrift.txt · Zuletzt geändert: 2024/11/05 21:18 von dj1ng