Google Chat: zj734465502@gmail.com
+86-0755-88291180
sales01@spotpear.com
dragon_manager@163.com
services01@spotpear.com
manager01@spotpear.com
WhatsApp:13246739196
Size | 3.52inch |
Driver Board Size | 86.5mm × 57mm |
Display Size | 74.51mm × 49.67mm |
Outline Dimensions (bare panel) | 84.7mm × 54.41mm × 0.85mm |
Operating Voltage | 3.3V / 5V (IO level voltage should be the same as the supply voltage) |
Communication Interface | SPI |
Dot Pitch | 0.207mm × 0.207mm |
Resolution | 360 × 240 |
Display Color | Black, White, Red |
Grayscale | 2 |
Refresh Time | 16s |
Refresh Power | <25mW(typ.) |
Sleep Current | <0.01uA (close to 0) |
Operating Temperature | 0 ~ 40 ℃ |
Storage Temperature | 0 ~ 40 ℃ |
CSB (CS): Slave chip selection signal, low active. When CS is low level, the chip is enabled.
SCL (SCK/SCLK): Serial clock signal.
D/C (DC): Data/Command control signal, writes commands at a low level; writes data/parameter at a high level.
SDA (DIN): Serial data signal.
Timing sequence: CPHL=0, CPOL=0 (that is, SPI mode 0).
This product is an e-Paper device adopting the image display technology of Microencapsulated Electrophoretic Display, MED. The basic principle is that the charged nanoparticles suspended in the liquid are subjected to the electric field to produce migration. The e-Paper screen display patterns by reflecting the ambient light, so it has no background light requirement. Under ambient light, the e-Paper screen still has high visibility with a wide viewing angle of almost 180 degrees. It is the ideal choice for e-reading.
When connecting to the Raspberry Pi, you can directly plug the board into the 40PIN pin header of the Raspberry Pi, and be careful to align the pins.
If you choose to use an 8PIN cable to connect, please refer to the pin corresponding table below:
e-Paper | Raspberry Pi | |
BCM2835 encoding | Board physical pin number | |
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 |
sudo raspi-config Select Interfacing Options -> SPI -> Yes to enable the SPI interface
sudo reboot
#Open the Raspberry Pi terminal and run the following commands: wget https://github.com/joan2937/lg/archive/master.zip unzip master.zip cd lg-master make sudo make install # For more information, please refer to the source code: https://github.com/gpiozero/lg
#Open the Raspberry Pi terminal and run the following commands: sudo apt-get update sudo apt install gpiod libgpiod-dev
#Open the Raspberry Pi terminal and run the following commands: 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/
#Open the Raspberry Pi terminal and run the following commands: sudo apt-get install wiringpi #For Raspberry Pi systems after May 2019 (those earlier may not require execution), an upgrade may be necessary: 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, there is an installation error. #Bullseye branch system uses 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, there is an installation error.
wget https://files.waveshare.com/wiki/3.52inch%20e-Paper%20HAT%20(B)/3in52_e-Paper_B.zip unzip 3in52_e-Paper_B.zip -d 3in52_e-Paper_B cd e-Paper/RaspberryPi_JetsonNano/
sudo apt-get install p7zip-full 7z x 3in52_e-Paper_B.zip -O./3in52_e-Paper_B cd e-Paper/RaspberryPi_JetsonNano/
Currently, accessing GitHub is not very smooth. It is recommended to use the above method to download from our official website.
git clone https://github.com/waveshare/e-Paper.git cd e-Paper/E-paper_Separate_Program/3in52_e-Paper_B/RaspberryPi_JetsonNano/
# It is now in 3in52_e-Paper_B/RaspberryPi_JetsonNano cd c sudo make clean sudo make -j4
sudo ./epd
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 spidev
sudo apt-get update sudo apt-get install python-pip sudo apt-get install python-pil sudo apt-get install python-numpy sudo pip install spidev
sudo apt-get update # python3 sudo apt install python3-gpiozero # python2 sudo apt install python-gpiozero
wget https://files.waveshare.com/wiki/3.52inch%20e-Paper%20HAT%20(B)/3in52_e-Paper_B.zip unzip 3in52_e-Paper_B.zip -d 3in52_e-Paper_B cd e-Paper/RaspberryPi_JetsonNano/
sudo apt-get install p7zip-full 7z x 3in52_e-Paper_B.zip -O./3in52_e-Paper_B cd e-Paper/RaspberryPi_JetsonNano/
Currently, accessing GitHub is not very smooth. It is recommended to use the above method to download from our official website.
git clone https://github.com/waveshare/e-Paper.git cd e-Paper/E-paper_Separate_Program/3in52_e-Paper_B/RaspberryPi_JetsonNano/
# Make sure it is in e-Paper/RaspberryPi_JetsonNano/ cd python/examples/ python3 epd_3in52b_test.py
Use an 8PIN cable to connect, please refer to the pin correspondence table below:
e-Paper | Arduino UNO R4 | Mega2560 |
VCC | 5V | 5V |
GND | GND | GND |
DIN | D11 | D51 |
CLK | D13 | D52 |
CS | D10 | D10 |
DC | D9 | D9 |
RST | D8 | D8 |
BUSY | D7 | D7 |
Arduino IDE Windows Installation Tutorial
Open the test demo: 3in52_e-Paper_B\Arduino_R4\Arduino_R4.ino
The 40PIN pin of Jetson Nano is compatible with the 40PIN pin of Raspberry Pi, and it provides a Jetson.GPIO library that is consistent with the API of RPI.GPIO library of Raspberry Pi, so the serial number connected here is the same as that of Raspberry Pi. When using the 40PIN interface, you can directly insert the module into the 40Pin header of the Jetson Nano.
If you choose to use an 8PIN cable to connect, please refer to the pin corresponding table below:
e-Paper | Jetson Nano Developer Kit | |
BCM2835 encoding | Board physical pin number | |
VCC | 3.3V | 3.3V |
GND | GND | GND |
DIN | 10(SPI0_MOSI) | 19 |
CLK | 11(SPI0_SCK) | 23 |
CS | 8(SPI0_CS0) | 24 |
DC | 25 | 22 |
RST | 17 | 11 |
BUSY | 24 | 18 |
wget https://files.waveshare.com/wiki/3.52inch%20e-Paper%20HAT%20(B)/3in52_e-Paper_B.zip unzip 3in52_e-Paper_B.zip -d 3in52_e-Paper_B cd e-Paper/RaspberryPi_JetsonNano/
sudo apt-get install p7zip-full 7z x 3in52_e-Paper_B.zip -O./3in52_e-Paper_B cd e-Paper/RaspberryPi_JetsonNano/
Currently, accessing GitHub is not very smooth. It is recommended to use the above method to download from our official website.
git clone https://github.com/waveshare/e-Paper.git cd e-Paper/E-paper_Separate_Program/3in52_e-Paper_B/RaspberryPi_JetsonNano/
# It is now in 3in52_e-Paper_B/RaspberryPi_JetsonNano cd c sudo make clean sudo make JETSON -j4
sudo ./epd
sudo apt-get update sudo apt-get install python3-numpy sudo apt-get install python3-pip sudo pip3 install Jetson.GPIO
wget https://files.waveshare.com/wiki/3.52inch%20e-Paper%20HAT%20(B)/3in52_e-Paper_B.zip unzip 3in52_e-Paper_B.zip -d 3in52_e-Paper_B cd e-Paper/RaspberryPi_JetsonNano/
sudo apt-get install p7zip-full 7z x 3in52_e-Paper_B.zip -O./3in52_e-Paper_B cd e-Paper/RaspberryPi_JetsonNano/
Currently, accessing GitHub is not very smooth. It is recommended to use the above method to download from our official website.
git clone https://github.com/waveshare/e-Paper.git cd e-Paper/E-paper_Separate_Program/3in52_e-Paper_B/RaspberryPi_JetsonNano/
# Make sure it is in 3in52_e-Paper_B/RaspberryPi_JetsonNano/ cd python/examples/ python3 epd_3in52b_test.py
When connecting to the Sunrise, you can directly plug the board into the Sunrise's 40PIN pin header, and be careful to align the pins.
If you choose to use an 8PIN cable to connect, please refer to the pin corresponding table below:
e-Paper | Sunrise X3 Pi | |
BCM encoding | Board physical pin number | |
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 |
sudo apt-get update sudo apt-get install python-pip sudo apt-get install python-pil sudo apt-get install python-numpy sudo pip install Hobot.GPIO sudo pip install spidev
wget https://files.waveshare.com/wiki/3.52inch%20e-Paper%20HAT%20(B)/3in52_e-Paper_B.zip unzip 3in52_e-Paper_B.zip -d 3in52_e-Paper_B cd e-Paper/RaspberryPi_JetsonNano/
sudo apt-get install p7zip-full 7z x 3in52_e-Paper_B.zip -O./3in52_e-Paper_B cd e-Paper/RaspberryPi_JetsonNano/
Currently, accessing GitHub is not very smooth. It is recommended to use the above method to download from our official website.
git clone https://github.com/waveshare/e-Paper.git cd e-Paper/E-paper_Separate_Program/3in52_e-Paper_B/RaspberryPi_JetsonNano/
# Make sure it is in e-Paper/RaspberryPi_JetsonNano/ cd python/examples/ python3 epd_3in52b_test.py
Use an 8PIN cable to connect, please refer to the pin corresponding table below:
e-Paper | STM32 |
VCC | 3.3V |
GND | GND |
DIN | PA7 |
CLK | PA5 |
CS | PA4 |
DC | PA2 |
RST | PA1 |
BUSY | PA3 |
For more details, please click on the url below to view
https://www.waveshare.com/wiki/E-Paper_ESP32_Driver_Board
For more details, please click on the url below to view
https://www.waveshare.com/wiki/E-Paper_ESP8266_Driver_Board
Monday-Friday (9:30-6:30) Saturday (9:30-5:30)
Email: services01@spotpear.com