blob: 3b8c7d5561871748009c2b7b93963fb75979d909 [file] [log] [blame]
Patrick Ventureccd06d22017-04-10 15:21:32 -07001#!/bin/bash
2
Andrew Jefferya221e432024-08-26 11:45:10 +09303GPIO_BASE=$(cat /sys/devices/platform/ahb/1e780000.apb/1e780000.gpio/gpio/*/base)
Patrick Williams8c226232023-04-15 20:05:21 -05004GPIO_NUM=$((GPIO_BASE + 24 + 3))
Patrick Ventureccd06d22017-04-10 15:21:32 -07005
6echo 1 > /sys/class/gpio/gpio${GPIO_NUM}/value
7sleep 1
8echo 0 > /sys/class/gpio/gpio${GPIO_NUM}/value
9
10exit 0;