Last updated: April 2026
BolterDash ("the app") is a personal Android application for EV route planning. This privacy policy explains what data the app accesses, how it is used, and what is shared with third parties.
| #!/bin/sh | |
| GPIOCHIP=0 | |
| BASE=$(cat /sys/class/gpio/gpiochip${GPIOCHIP}/base) | |
| NGPIO=$(cat /sys/class/gpio/gpiochip${GPIOCHIP}/ngpio) | |
| max=$(($BASE+$NGPIO)) | |
| gpio=$BASE | |
| while [ $gpio -lt $max ] ; do | |
| echo $gpio > /sys/class/gpio/export | |
| [ -d /sys/class/gpio/gpio${gpio} ] && { | |
| echo out > /sys/class/gpio/gpio$gpio/direction |