Mercurial > templog
view py/setup_gpio.sh @ 452:25bdf95f0e29
config for sensor IDs
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 20 Dec 2012 22:26:18 +0800 |
parents | 8fdf86ea41e7 |
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