view py/setup_gpio.sh @ 603:b45b8b4cf0f5 rust

get rid of lazy_static, config is passed around better use of threadpool for sensors readings are no longer options
author Matt Johnston <matt@ucc.asn.au>
date Thu, 16 Feb 2017 23:19:12 +0800
parents 6e3b5bfa4b02
children
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

chgrp gpio /sys/class/gpio/gpio17/direction /sys/class/gpio/gpio17/value
chmod g+w /sys/class/gpio/gpio17/direction /sys/class/gpio/gpio17/value