change gpio state

This commit is contained in:
cronyx
2025-02-16 21:15:05 +03:00
parent e43425ac0b
commit f372c2f3e3

View File

@@ -0,0 +1,18 @@
#!/bin/sh
case "$1" in
start)
echo "Loading vendor modules..."
vendor=$(ipcinfo -v)
load_"$vendor" -i
gpio clear 72
;;
stop)
;;
*)
echo "Usage: $0 {start}"
exit 1
;;
esac