view py/setup_gpio.sh @ 558:9f659ece4e63

a few more parameters
author Matt Johnston <matt@ucc.asn.au>
date Tue, 09 Jun 2015 21:22:10 +0800
parents 3a514fbb88eb
children 4632018d1c80
line wrap: on
line source

#!/bin/sh

# this must run as root

PINS="17"

for PIN in $PINS; do
    echo $PIN > /sys/class/gpio/export
done