user:wellenschrat:projekte:raspberry-pi:geophone-vibrationssensor-auswertung
Inhaltsverzeichnis
Geophone als Vibrationssensor mit Auswertungsfunktion
Hier ist Baustelle!
sudo nano /etc/wpa_supplicant/wpa_supplicant.conf
sudo apt-get install x11vnc
Passwort vergeben mit x11vnc -storepasswd
Starten mit x11vnc -usepw
https://www.raspberrypi.com/news/raspberry-pi-bullseye-update-april-2022/
datei userconf in boot
echo 'mypassword' | openssl passwd -6 -stdin
username:encrypted- password
touch ssh in boot
in boot
- wpa_supplicant.conf
country=DE ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev update_config=1 network={ ssid="WLAN SSID" scan_ssid=1 psk="WLAN PASSWORT" key_mgmt=WPA-PSK }
1. https://www.balena.io/etcher/
sudo apt-get update sudo apt-get install build-essential python-dev libatlas-base-dev sudo pip3 install adafruit-ads1x15 sudo pip3 install adafruit-circuitpython-ads1x15 sudo pip3 install matplotlib pip3 install numpy --upgrade
Gnuplot-Auswertung
- geophone.plt
set title "Geophon-Datenplot vom dd.mm.yyyy" ### set ytics 5 set xtics autofreq set grid ytics xtics set autoscale y set autoscale x set xlabel 'x-label-text' set yrange [-150:150] set ylabel 'Datenpunkte' ### set terminal png font monospace 12 size 1440, 900 set output 'geophon-diagramm.png' plot "01.csv" using 1 title 'Schlafzimmer' with lines
Links
user/wellenschrat/projekte/raspberry-pi/geophone-vibrationssensor-auswertung.txt · Zuletzt geändert: 14.06.2024 von wllnschrt