Create GPIO and PWM paths in SATA_HAT script

This commit is contained in:
coolneng 2021-07-28 12:48:03 +02:00
parent e4c08419bd
commit 139a79c36b
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 26 additions and 22 deletions

View File

@ -1,32 +1,36 @@
#!/bin/sh
BASE_PATH=/sys/class/gpio
BASE_PATH=/sys/class
GPIO_PATH="$BASE_PATH"/gpio
PWM_PATH="$BASE_PATH"/pwm
# GPIO pins
SATA0=26
SATA1=25
# PWM pins
CPU_FAN=12
HDD_FAN=13
# Values
LOW=0
HIGH=1
export_pin() {
if [ ! -e $BASE_PATH/gpio"$1" ]; then
echo "$1" >$BASE_PATH/export
if [ ! -e $GPIO_PATH/gpio"$1" ]; then
echo "$1" >$GPIO_PATH/export
fi
}
unexport_pin() {
if [ -e $BASE_PATH/gpio"$1" ]; then
echo "$1" >$BASE_PATH/unexport
if [ -e $GPIO_PATH/gpio"$1" ]; then
echo "$1" >$GPIO_PATH/unexport
fi
}
set_mode() {
export_pin "$1"
echo "out" >$BASE_PATH/gpio"$1"/direction
echo "$2" >$BASE_PATH/gpio"$1"/value
echo "out" >$GPIO_PATH/gpio"$1"/direction
echo "$2" >$GPIO_PATH/gpio"$1"/value
if [ "$3" = "clean" ]; then
unexport_pin "$1"
fi
@ -36,7 +40,7 @@ turn_on() {
set_mode $SATA0 $HIGH
sleep 1
set_mode $SATA1 $HIGH
set_mode $CPU_FAN $LOW
set_mode $CPU_FAN $HIGH
}
turn_off() {