gpio17 is an LED on th7

Sp gpo27 chosen to active IR leds instead.
This commit is contained in:
robin 2023-12-10 11:40:44 +00:00
parent d9d3e32df0
commit 1c23b53add

View File

@ -1,18 +1,18 @@
# take a picture.
# First turn on IR LEDS
# GPIO17 is the ground side of the IR leds, so setting it to 0 turns them on
# GPIO27 is the ground side of the IR leds, so setting it to 0 turns them on
# Note this is through a 220 Ohm resdistor limiting the current to about 10 mA
if [ -d /sys/class/gpio/gpio17 ]; then
echo " gpio17 already exists "
if [ -d /sys/class/gpio/gpio27 ]; then
echo " gpio27 already exists "
else
echo 17 > /sys/class/gpio/export
echo 27 > /sys/class/gpio/export
fi
sleep 0.1
# turn on the IR leds
echo out > /sys/class/gpio/gpio17/direction
echo 0 > /sys/class/gpio/gpio17/value
echo out > /sys/class/gpio/gpio27/direction
echo 0 > /sys/class/gpio/gpio27/value
export d=`date`
@ -22,4 +22,4 @@ export picname=`echo $d | sed 's/ /_/g' | sed 's/:/_/g' `
libcamera-jpeg -o /home/robin/Pictures/$picname.jpg -t 2000 --width 1200 --height 1000
# turn off IR LEDS
echo 1 > /sys/class/gpio/gpio17/value
echo 1 > /sys/class/gpio/gpio27/value