Benutzer-Werkzeuge

Webseiten-Werkzeuge


zero

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen der Seite angezeigt.

Link zu der Vergleichsansicht

Beide Seiten, vorherige ÜberarbeitungVorherige Überarbeitung
Nächste Überarbeitung
Vorherige Überarbeitung
zero [2020/07/27 10:55] varnholtzero [2020/12/20 15:18] (aktuell) varnholt
Zeile 151: Zeile 151:
  
 ==== camera ==== ==== camera ====
 +  git clone https://github.com/raspberrypi/userland.git
 +If you do only want to build just RaspiVid, then run buildme once and it should do the cmake magic and create the appropriate Makefile in build/raspberry/release/host_applications/linux/apps/raspicam.
 +Use "make -C build/raspberry/release/host_applications/linux/apps/raspicam" to build just the raspicam apps, and it'll create a binary in build/bin/
  
 +raspistill für Bilder, aber ich will stream, also
 +  sudo apt-get install motion -y
 +  v4l2-ctl -V
 +  sudo nano /etc/motion/motion.conf
 +  daemon on
 +  stream_localhost off
 +  target_dir /home/pi/Monitor
 +  v4l2_palette 15
 +  width 640 
 +  height 480
 +  framerate 10 
 +  
 +==== probe request ====
 +Auf einer Webseite bin ich drauf gestossen, den DHL-Boten an seinem Handy zu ermitteln. Am Mac muss man mit
 +  sudo ln -s /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport /usr/local/bin/airport
 +  sudo airport en1 sniff 1
 +  sudo tshark -Ini en1 -s 256 type mgt subtype probe-req
 +Am Raspberry mit 
 +Das wären dann Proberequests.
 +  airmon-ng start wlan0
 +  tshark -n -i wlan0mon subtype probereq
 +oder
 +  git clone https://github.com/nikharris0/probemon.git
 +  python probemon.py -i wlan0mon -t unix -o ~/WonderHowTo -f -s -r -l
 +
 +==== DHL-Auto erkennen ====
 +Könnte man nicht mit der Kamera und MachineLearning die Farbe des DHL Autos erkennen?
 +
 +==== Energie sparen =====
 +<code>
 +# Disable HDMI in /etc/rc.local. (mit -p wieder anschalten)
 +/usr/bin/tvservice -o
 +
 +# led ausschalten in /boot/config.txt
 +dtparam=act_led_trigger=none
 +dtparam=act_led_activelow=on
 +</code>
zero.1595847303.txt.gz · Zuletzt geändert: 2020/07/27 10:55 von varnholt