Skip to content

Instantly share code, notes, and snippets.

@Pelirrojo
Created June 12, 2020 01:26
Show Gist options
  • Save Pelirrojo/1159857eeefd8c87cf7ad6ddbfbd4b70 to your computer and use it in GitHub Desktop.
Save Pelirrojo/1159857eeefd8c87cf7ad6ddbfbd4b70 to your computer and use it in GitHub Desktop.
Raspberry PI Installation with LCD, Wifi & Bluetoth
ssh pi@<ip>
# Change default user password
passwd
# Install DevOps
sudo su -
apt-get update && apt-get -y dist-upgrade && apt-get install raspberrypi-ui-mods
apt-get install --no-install-recommends xinit
apt-get install --no-install-recommends xserver-xorg
apt-get install raspberrypi-ui-mods
# Install LCD Screen
sudo rm -rf LCD-show
git clone https://github.com/goodtft/LCD-show.git
chmod -R 755 LCD-show
cd LCD-show/
sudo ./LCD35-show
# Install Wifi
sudo apt-get install firmware-realtek
wget http://www.element14.com/community/servlet/JiveServlet/download/44948-8-97488/r8712u_ko.zip
unzip r8712u_ko.zip
sudo cp -r lib /
sudo depmod
# Test BlueTooth
hcitool scan
# Test Camera
raspistill -o Desktop/image-small.jpg -w 640 -h 480
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment