Initial commit of files

This commit is contained in:
2021-01-22 10:13:24 -05:00
parent c86648ed30
commit 8d69d4c2db
25 changed files with 781 additions and 0 deletions

12
bin/ads-b.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/sh
ADSB=$HOME/ProbeStar/pi_tools/Projects/ADS-B/dump1090-fa
if [ -d $ADSB ]; then
cd $ADSB
if [ ! -d /run/dump1090-fa ]; then
sudo mkdir -p /run/dump1090-fa
sudo chmod a+rwx /run/dump1090-fa
fi
./dump1090 --interactive --net --write-json /run/dump1090-fa/
fi

9
bin/os-update.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
sudo apt update
sudo apt full-upgrade
sudo apt purge -y bluealsa pimixer
sudo apt install -y pulseaudio-module-bluetooth
sudo reboot