You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.7 KiB
57 lines
1.7 KiB
2 years ago
|
https://www.waveshare.com/wiki/3inch_e-Paper_Module_(G)_Manual#Working_With_Raspberry_Pi
|
||
|
|
||
|
Install BCM2835
|
||
|
|
||
|
#Open the Raspberry Pi terminal and run the following command
|
||
|
wget http://www.airspayce.com/mikem/bcm2835/bcm2835-1.71.tar.gz
|
||
|
tar zxvf bcm2835-1.71.tar.gz
|
||
|
cd bcm2835-1.71/
|
||
|
sudo ./configure && sudo make && sudo make check && sudo make install
|
||
|
# For more information, please refer to the official website: http://www.airspayce.com/mikem/bcm2835/
|
||
|
|
||
|
|
||
|
Install WiringPi (Optional)
|
||
|
|
||
|
#Open the Raspberry Pi terminal and run the following command:
|
||
|
sudo apt-get install wiringpi
|
||
|
#For Raspberry Pi systems after May 2019 (earlier than before, you may not need to execute), you may need to upgrade:
|
||
|
wget https://project-downloads.drogon.net/wiringpi-latest.deb
|
||
|
sudo dpkg -i wiringpi-latest.deb
|
||
|
gpio -v
|
||
|
#Run gpio -v and version 2.52 will appear. If it does not appear, the installation is wrong.
|
||
|
|
||
|
#Bullseye branch system use the following command:
|
||
|
git clone https://github.com/WiringPi/WiringPi
|
||
|
cd WiringPi
|
||
|
./build
|
||
|
gpio -v
|
||
|
# Run gpio -v and version 2.60 will appear. If it does not appear, it means that there is an installation error.
|
||
|
|
||
|
|
||
|
|
||
|
Install the function library
|
||
|
|
||
|
sudo apt-get update
|
||
|
sudo apt-get install python3-pip
|
||
|
sudo apt-get install python3-pil
|
||
|
sudo apt-get install python3-numpy
|
||
|
sudo pip3 install RPi.GPIO
|
||
|
sudo pip3 install spidev
|
||
|
|
||
|
|
||
|
Download the demo via GitHub (You can skip this step if you have downloaded it.)
|
||
|
|
||
|
git clone https://github.com/waveshare/e-Paper.git
|
||
|
cd e-Paper/RaspberryPi_JetsonNano/
|
||
|
|
||
|
# Raspberry Pi
|
||
|
# EPAPER BCM2835 Board
|
||
|
# VCC 3.3V 3.3V
|
||
|
# GND GND GND
|
||
|
# DIN MOSI 19
|
||
|
# CLK SCLK 23
|
||
|
# CS CE0 24
|
||
|
# DC 25 22
|
||
|
# RST 17 11
|
||
|
# BUSY 24 18
|