Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
updated joust for more efficiency when doing standard games
added scripts for modular installation
- Loading branch information
Showing
with
16 additions
and 8 deletions.
- +9 −0 disable_internal_bluetooth.sh
- +2 −0 joust.py
- +5 −0 reset_bluetooth_connections.sh
- +0 −8 setup.sh
@@ -0,0 +1,9 @@ | ||
# this will disable on-board bluetooth | ||
#this will allow only class one long range btdongles to connect to psmove controllers | ||
sudo echo "dtoverlay=pi3-disable-bt" | sudo tee -a /boot/config.txt | ||
sudo systemctl disable hciuart | ||
|
||
#remove onboard bluetooth folders | ||
sudo rm -rf /var/lib/bluetooth/* | ||
|
||
sudo reboot |
@@ -0,0 +1,5 @@ | ||
#remove onboard bluetooth folders | ||
sudo rm -rf /var/lib/bluetooth/* | ||
|
||
sudo reboot | ||
|