Created
January 21, 2023 17:33
-
-
Save gottaloveit/960eb055d1163bbbf1531d068ca5fe6d to your computer and use it in GitHub Desktop.
x735 v 2.5 rpi heatsink fan software install script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt-get update | |
sudo apt-get -y upgrade | |
sudo apt-get install -y git | |
sudo apt-get install -y pigpio python3-pigpio | |
sudo apt-get install -y python3-smbus python3-rpi.gpio | |
git clone https://github.com/geekworm-com/x735-v2.5 | |
cd x735-v2.5 | |
sudo chmod +x *.sh | |
sudo bash install.sh | |
echo "alias x735off='sudo /usr/local/bin/x735softsd.sh'" >> ~/.bashrc | |
echo | |
echo "All done, please reboot" | |
echo | |
echo | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment