尺寸 | 3.52英寸 |
驱动板尺寸 | 86.5mm × 57mm |
显示尺寸 | 74.51mm × 49.67mm |
外形尺寸(裸屏) | 84.7mm × 54.41mm × 0.85mm |
工作电压 | 3.3V / 5V(IO电平电压要和供电电压一致) |
通信接口 | SPI |
点距 | 0.207mm × 0.207mm |
分辨率 | 360 × 240 |
显示颜色 | 黑、白、红 |
灰度等级 | 2 |
刷新时间 | 16s |
刷新功耗 | <25mW(typ.) |
休眠电流 | < 0.01uA(接近0) |
工作温度 | 0 ~ 40 ℃ |
存储温度 | 0 ~ 40 ℃ |
CSB(CS):从机片选信号,低电平有效,为低电平的时候,芯片使能。
SCL(SCK/SCLK):串行时钟信号。
D/C(DC):数据/命令控制信号,低电平时写入命令(Command);高电平时写入数据(Data/parameter)。
SDA(DIN):串行数据信号。
时序:CPHL=0,CPOL=0,即 SPI 模式0。
【备注】具体关于SPI通信的相关信息,可以自行网上搜索资料了解。
本产品使用的电子纸采用“微胶囊电泳显示”技术进行图像显示,其基本原理是悬浮在液体中的带电纳米粒子受到电场作用而产生迁移。电子纸显示屏是靠反射环境光来显示图案的,不需要背光,在环境光下,电子纸显示屏清晰可视,可视角度几乎达到了 180°。因此,电子纸显示屏非常适合阅读。
连接树莓派的时候,可以直接将板子插到树莓派的 40PIN 排针上去,注意对好引脚。
如果是选择用 8PIN 排线连接的话,请参考下方的引脚对应表格:
e-Paper | Raspberry Pi | |
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 |
sudo raspi-config 选择Interfacing Options -> SPI -> Yes 开启SPI接口
sudo reboot
#打开树莓派终端,并运行以下指令: wget https://github.com/joan2937/lg/archive/master.zip unzip master.zip cd lg-master make sudo make install # 更多的可以参考源码:https://github.com/gpiozero/lg
#打开树莓派终端,并运行以下指令: sudo apt-get update sudo apt install gpiod libgpiod-dev
#打开树莓派终端,并运行以下指令: 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 # 更多的可以参考官网:http://www.airspayce.com/mikem/bcm2835/
#打开树莓派终端,并运行以下指令: sudo apt-get install wiringpi #对于树莓派2019年5月之后的系统(早于之前的可不用执行),可能需要进行升级: wget https://project-downloads.drogon.net/wiringpi-latest.deb sudo dpkg -i wiringpi-latest.deb gpio -v # 运行 gpio -v 会出现 2.52 版本,如果没有出现,说明安装出错。 #Bullseye 分支系统使用如下命令: git clone https://github.com/WiringPi/WiringPi cd WiringPi ./build gpio -v # 运行 gpio -v 会出现 2.60 版本,如果没有出现,说明安装出错。
wget https://www.waveshare.net/w/upload/0/02/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/
目前访问 GitHub 并不是很流畅,建议使用上面的方法从我们官网下载。
git clone https://github.com/waveshare/e-Paper.git cd e-Paper/E-paper_Separate_Program/3in52_e-Paper_B/RaspberryPi_JetsonNano/
# 此时在 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://www.waveshare.net/w/upload/0/02/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/
目前访问 GitHub 并不是很流畅,建议使用上面的方法从我们官网下载。
git clone https://github.com/waveshare/e-Paper.git cd e-Paper/E-paper_Separate_Program/3in52_e-Paper_B/RaspberryPi_JetsonNano/
# 确保在 e-Paper/RaspberryPi_JetsonNano/ 位置 cd python/examples/ python3 epd_3in52b_test.py
使用 8PIN 排线连接,请参考下方的引脚对应表格:
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 |
Jetson Nano 的 40PIN 引脚是兼容树莓派的 40PIN 引脚的,并且提供了一个 Jetson.GPIO 库跟树莓派的 RPI.GPIO 库的 API 是一致的,所以这里连接的序号跟树莓派的是一样的,使用 40PIN 接口时,可以直接将模块插入 Jetson Nano 的 40Pin 排座。
如果是选择用 8PIN 排线连接的话,请参考下方的引脚对应表格:
e-Paper | Jetson Nano Developer Kit | |
BCM2835编码 | Board物理引脚序号 | |
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://www.waveshare.net/w/upload/0/02/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/
目前访问 GitHub 并不是很流畅,建议使用上面的方法从我们官网下载。
git clone https://github.com/waveshare/e-Paper.git cd e-Paper/E-paper_Separate_Program/3in52_e-Paper_B/RaspberryPi_JetsonNano/
# 此时在 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://www.waveshare.net/w/upload/0/02/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/
目前访问 GitHub 并不是很流畅,建议使用上面的方法从我们官网下载。
git clone https://github.com/waveshare/e-Paper.git cd e-Paper/E-paper_Separate_Program/3in52_e-Paper_B/RaspberryPi_JetsonNano/
# 确保在 3in52_e-Paper_B/RaspberryPi_JetsonNano/ 位置 cd python/examples/ python3 epd_3in52b_test.py
连接旭日派的时候,可以直接将板子插到旭日派的 40PIN 排针上去,注意对好引脚。
如果是选择用 8PIN 排线连接的话,请参考下方的引脚对应表格:
e-Paper | Sunrise X3 Pi | |
BCM编码 | 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 |
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://www.waveshare.net/w/upload/0/02/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/
目前访问 GitHub 并不是很流畅,建议使用上面的方法从我们官网下载。
git clone https://github.com/waveshare/e-Paper.git cd e-Paper/E-paper_Separate_Program/3in52_e-Paper_B/RaspberryPi_JetsonNano/
# 确保在 e-Paper/RaspberryPi_JetsonNano/ 位置 cd python/examples/ python3 epd_3in52b_test.py
使用 8PIN 排线连接,请参考下方的引脚对应表格:
e-Paper | STM32 |
VCC | 3.3V |
GND | GND |
DIN | PA7 |
CLK | PA5 |
CS | PA4 |
DC | PA2 |
RST | PA1 |
BUSY | PA3 |
周一-周五(9:30-6:30)周六(9:30-5:30)
手机:13434470212
邮箱:services04@spotpear.cn
QQ:202004841