#!/bin/bash
# Simple utility script for toggling the wake pin.
# Spares the user having to flip the GPIO lines constantly.
#
WAKE_GPIO=117
echo 1 > /sys/class/gpio/gpio$WAKE_GPIO/value
sleep 1
echo 0 > /sys/class/gpio/gpio$WAKE_GPIO/value
