Raspberry Pi • View topic - Turning off camera LED
Pour éteindre la led de la camera du raspberry avec un script python :
#!/usr/bin/env python
import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
GPIO.setwarnings(False)
GPIO.setup(5, GPIO.OUT, initial=False)
rendre le script executable et le lancer (par exemple après motion...)
permalink -
-
http://www.raspberrypi.org/forums/viewtopic.php?t=44759&p=355867