8 lines
139 B
Bash
8 lines
139 B
Bash
#!/bin/bash
|
|
|
|
# just print this out
|
|
echo "Starting GPIO Deamon (sudo pigpiod)"
|
|
sudo pigpiod
|
|
|
|
# exit gracefully by returning a status
|
|
exit 0 |