尺寸 | 10.85英寸 |
驱动板尺寸 | 65.00 × 30.50mm |
显示尺寸 | 259.76 × 91.68mm |
外形尺寸 | 270.56 × 105.92 × 1.20mm |
工作电压 | 3.3V / 5V(IO电平电压要和供电电压一致) |
通信接口 | SPI |
点距 | 0.191 × 0.191mm |
分辨率 | 1360 × 480 |
显示颜色 | 黑、白 |
灰度等级 | 2 |
局部刷新时间 | 0.6s |
全局刷新时间 | 3.5s |
总刷新功耗 | < 50mW(typ.) |
工作温度 | 0 ~ 50 ℃ |
存储温度 | -25 ~ 70 ℃ |
CSB(CS):从机片选信号,低电平有效,为低电平的时候,芯片使能。
SCL(SCK/SCLK):串行时钟信号。
D/C(DC):数据/命令控制信号,低电平时写入命令(Command);高电平时写入数据(Data/parameter)。
SDA(DIN):串行数据信号。
时序:CPHL=0,CPOL=0,即 SPI 模式0。
【备注】具体关于SPI通信的相关信息,可以自行网上搜索资料了解。
本产品使用的电子纸采用“微胶囊电泳显示”技术进行图像显示,其基本原理是悬浮在液体中的带电纳米粒子受到电场作用而产生迁移。电子纸显示屏是靠反射环境光来显示图案的,不需要背光,在环境光下,电子纸显示屏清晰可视,可视角度几乎达到了 180°。因此,电子纸显示屏非常适合阅读。
对于计算机而言,它的数据存储方式是高位在前,低位在后,且一个字节只有8个位,因此会有一点改变:
这样只需要2个字节即可表示16个像素点了。
10.85inch e-Paper 是一块双IC控制的墨水屏,除了上述的编程原理外,还要注意一下以下内容
连接树莓派的时候,可以直接将板子插到树莓派的 40PIN 排针上去,注意对好引脚。
如果是选择用 10PIN 排线连接的话,请参考下方的引脚对应表格:
e-Paper | Raspberry Pi | |
BCM2835编码 | Board物理引脚序号 | |
VCC | 3.3V | 3.3V |
GND | GND | GND |
DIN | MOSI | 19 |
CLK | SCLK | 23 |
CS_M | CE0 | 24 |
CS_S | CE1 | 26 |
DC | 25 | 22 |
RST | 17 | 11 |
BUSY | 24 | 18 |
PWR | 18 | 12 |
sudo raspi-config 选择Interfacing Options -> SPI -> Yes 开启SPI接口
sudo reboot
git clone https://github.com/WiringPi/WiringPi cd WiringPi ./build gpio -v # 运行 gpio -v 会出现对应版本,如果没有出现,说明安装出错。
#打开树莓派终端,并运行以下指令: 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/
https://www.waveshare.net/w/upload/8/8e/10.85inch_e-Paper.zip unzip 10.85inch_e-Paper.zip -d 10.85inch_e-Paper cd 10.85inch_e-Paper/RaspberryPi/
sudo apt-get install p7zip-full 7z x 10.85inch_e-Paper.zip -O./10.85inch_e-Paper cd 10.85inch_e-Paper/RaspberryPi/
目前访问 GitHub 并不是很流畅,建议使用上面的方法从我们官网下载。
git clone https://github.com/waveshare/e-Paper.git cd e-Paper/E-paper_Separate_Program/10.85inch_e-Paper/RaspberryPi/
# 此时在 10.85inch_e-Paper/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 apt-get install python3-spidev
sudo apt-get update sudo apt-get install python-pip sudo apt-get install python-pil sudo apt-get install python-numpy sudo apt-get install python-spidev
https://www.waveshare.net/w/upload/8/8e/10.85inch_e-Paper.zip unzip 10.85inch_e-Paper.zip -d 10.85inch_e-Paper cd 10.85inch_e-Paper/RaspberryPi/
sudo apt-get install p7zip-full 7z x 10.85inch_e-Paper.zip -O./10.85inch_e-Paper cd 10.85inch_e-Paper/RaspberryPi/
目前访问 GitHub 并不是很流畅,建议使用上面的方法从我们官网下载。
git clone https://github.com/waveshare/e-Paper.git cd e-Paper/E-paper_Separate_Program/10.85inch_e-Paper/RaspberryPi/
# 确保在 10.85inch_e-Paper/RaspberryPi/ 位置 cd python/examples/ python3 epd_10in85_test.py
使用 10PIN 排线连接,请参考下方的引脚对应表格:
e-Paper | Arduino UNO R4 | Mega2560 |
VCC | 5V | 5V |
GND | GND | GND |
DIN | D11 | D51 |
CLK | D13 | D52 |
CS_M | D10 | D10 |
CS_S | D9 | D9 |
DC | D8 | D8 |
RST | D7 | D7 |
BUSY | D6 | D6 |
PWR | D5 | D5 |
使用 10PIN 排线连接,请参考下方的引脚对应表格:
e-Paper | STM32 |
VCC | 3.3V |
GND | GND |
DIN | PA7 |
CLK | PA5 |
CS_M | PA4 |
CS_S | PC4 |
DC | PA2 |
RST | PA1 |
BUSY | PA3 |
PWR | PA6 |
e-Paper | ESP32 |
VCC | 3.3V |
GND | GND |
DIN | IO14 |
CLK | IO13 |
CS_M | IO15 |
CS_S | IO2 |
DC | IO27 |
RST | IO26 |
BUSY | IO25 |
PWR | IO33 |
在线安装需要使用翻墙软件,离线安装则无需使用
周一-周五(9:30-6:30)周六(9:30-5:30)
手机:13434470212
邮箱:services04@spotpear.cn
QQ:202004841