view py/setup_gpio.sh @ 148:b32e5a11a4cb

few updates, seems to run
author Matt Johnston <matt@ucc.asn.au>
date Sat, 15 Dec 2012 23:49:08 +0800
parents
children d03157c7ad60
line wrap: on
line source

#!/bin/sh

# this must run as root

PIN=17
GROUP=fridgeio

echo $PIN > /sys/class/gpio/export

for f in direction value; do
    fn=/sys/devices/virtual/gpio/gpio$PIN/$f
    chgrp $GROUP $fn
    chmod g+rw $fn
done