Google Chat:---
+86-0755-88291180
sales@spotpear.com
dragon_manager@163.com
tech-support@spotpear.com
zhoujie@spotpear.com
WhatsApp:13246739196
WhatsApp:13424403025
| Size | 2.15inch |
| Driver Board Size | 65mm × 34mm |
| Display Size | 48.10mm × 26mm |
| Outline Dimensions (bare panel) | 60.8mm × 31.8mm × 1.00mm |
| Operating Voltage | 3.3V / 5V (IO level voltage should be the same as the supply voltage) |
| Communication Interface | SPI |
| Dot Pitch | 0.1625mm × 0.1625mm |
| Resolution | 296 × 160 |
| Display Color | Black, White, Red |
| Grayscale | 2 |
| Refresh Time | 23s |
| Refresh Power | <15mW(typ.) |
| Sleep Current | < 0.01uA (close to 0) |
| Operating Temperature | 0 ~ 40 ℃ |
| Storage Temperature | 0 ~ 40 ℃ |
/2.15inch-e-Paper-HAT+-B-01.jpg)
CSB (CS): Slave chip select signal, active at low level. When it is at low level, the chip is enabled.
SCL (SCK/SCLK): Serial clock signal.
D/C (DC): Data/command control signal, write command (Command) when the level is low; write data (Data/parameter) when the level is high.
SDA (DIN): Serial data signal.
Timing: CPHL=0, CPOL=0, i.e. SPI mode 0.
Note: For specific information about SPI communication, you can search for information online on your own.
The e-paper used in this product uses "microcapsule electrophoresis display" technology for image display. The basic principle is that charged nanoparticles suspended in a liquid migrate under the action of an electric field. The e-paper display screen displays patterns by reflecting ambient light and does not require a backlight. Under ambient light, the e-paper display screen is clearly visible, with a viewing angle of almost 180°. Therefore, e-paper displays are ideal for reading.
/2.15inch-e-Paper-HAT+-B-02.png)
/2.15inch-e-Paper-HAT+-B-03.png)
/2.15inch-e-Paper-HAT+-B-04.png)
/2.15inch-e-Paper-HAT+-B-05.png)
/2.15inch-e-Paper-HAT+-B-06.png)
Note: This section is a general template. Please check and confirm if it matches your device.
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 a 9PIN 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 |
| PWR | 18 | 12 |
sudo raspi-config Select Interfacing Options -> SPI -> Yes to enable the SPI interface
/2.15inch-e-Paper-HAT+-B-07.png)
sudo reboot
/2.15inch-e-Paper-HAT+-B-08.jpg)
/2.15inch-e-Paper-HAT+-B-09.jpg)
#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/2.15inch%20e-Paper%20HAT%2B%20(B)/2in15_e-Paper_B.zip unzip 2in15_e-Paper_B.zip -d 2in15_e-Paper_B cd 2in15_e-Paper_B/RaspberryPi_JetsonNano/
sudo apt-get install p7zip-full 7z x 2in15_e-Paper_B.zip -O./2in15_e-Paper_B cd 2in15_e-Paper_B/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/2in15_e-Paper_B/RaspberryPi_JetsonNano/
# It is now in 2in15_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/2.15inch%20e-Paper%20HAT%2B%20(B)/2in15_e-Paper_B.zip unzip 2in15_e-Paper_B.zip -d 2in15_e-Paper_B cd 2in15_e-Paper_B/RaspberryPi_JetsonNano/
sudo apt-get install p7zip-full 7z x 2in15_e-Paper_B.zip -O./2in15_e-Paper_B cd 2in15_e-Paper_B/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/2in15_e-Paper_B/RaspberryPi_JetsonNano/
# Make sure it is in 2in15_e-Paper_B/RaspberryPi_JetsonNano/ cd python/examples/ python3 epd_2in15b_test.py
Use a 9PIN cable to connect, please refer to the pin corresponding table below:
| e-Paper | Arduino UNO | 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 |
| PWR | D6 | D6 |
Arduino IDE Windows Installation Tutorial
/2.15inch-e-Paper-HAT+-B-10.jpg)
Open the demo: 2in15_e-Paper_B\Arduino_R4\Arduino_R4.ino/2.15inch-e-Paper-HAT+-B-11.jpg)
/2.15inch-e-Paper-HAT+-B-12.jpg)
/2.15inch-e-Paper-HAT+-B-13.jpg)
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 a 9PIN 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 |
| PWR | 18 | 12 |
wget https://files.waveshare.com/wiki/2.15inch%20e-Paper%20HAT%2B%20(B)/2in15_e-Paper_B.zip unzip 2in15_e-Paper_B.zip -d 2in15_e-Paper_B cd 2in15_e-Paper_B/RaspberryPi_JetsonNano/
sudo apt-get install p7zip-full 7z x 2in15_e-Paper_B.zip -O./2in15_e-Paper_B cd 2in15_e-Paper_B/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/2in15_e-Paper_B/RaspberryPi_JetsonNano/
# It is now in 2in15_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/2.15inch%20e-Paper%20HAT%2B%20(B)/2in15_e-Paper_B.zip unzip 2in15_e-Paper_B.zip -d 2in15_e-Paper_B cd 2in15_e-Paper_B/RaspberryPi_JetsonNano/
sudo apt-get install p7zip-full 7z x 2in15_e-Paper_B.zip -O./2in15_e-Paper_B cd 2in15_e-Paper_B/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/2in15_e-Paper_B/RaspberryPi_JetsonNano/
# Make sure it is in 2in15_e-Paper_B/RaspberryPi_JetsonNano/ cd python/examples/ python3 epd_2in15b_test.py
When connecting to the RDK X3, you can directly plug the board into the RDK X3's 40PIN pin header, and be careful to align the pins.
If you choose to use a 9PIN cable to connect, please refer to the pin corresponding table below:
| e-Paper | RDK X3 | |
| 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 |
| PWR | 18 | 12 |
/2.15inch-e-Paper-HAT+-B-14.jpg)
/2.15inch-e-Paper-HAT+-B-15.jpg)
/2.15inch-e-Paper-HAT+-B-16.jpg)
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/2.15inch%20e-Paper%20HAT%2B%20(B)/2in15_e-Paper_B.zip unzip 2in15_e-Paper_B.zip -d 2in15_e-Paper_B cd 2in15_e-Paper_B/RaspberryPi_JetsonNano/
sudo apt-get install p7zip-full 7z x 2in15_e-Paper_B.zip -O./2in15_e-Paper_B cd 2in15_e-Paper_B/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/2in15_e-Paper_B/RaspberryPi_JetsonNano/
# Make sure it is in 2in15_e-Paper_B/RaspberryPi_JetsonNano/ cd python/examples/ python3 epd_2in15b_test.py
Use a 9PIN 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 |
| PWR | PA6 |
/2.15inch-e-Paper-HAT+-B-17.jpg)
/2.15inch-e-Paper-HAT+-B-18.jpg)
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
/2.15inch-e-Paper-HAT+-B-20.jpg)
/2.15inch-e-Paper-HAT+-B-21.jpg)
/2.15inch-e-Paper-HAT+-B-22.jpg)
Monday-Friday (9:30-6:30) Saturday (9:30-5:30)
Email: services01@spotpear.com