-
Notifications
You must be signed in to change notification settings - Fork 15
/
readme.txt
executable file
·78 lines (67 loc) · 3.12 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#Step 1: Download and enter the Waveshare-DSI-LCD driver folder
git clone https://github.com/waveshare/Waveshare-DSI-LCD
cd Waveshare-DSI-LCD
#Step 2: Enter uname -a in the terminal to view the kernel version and cd to the corresponding file directory
#5.15.61 then run the following command
cd 5.15.61
#5.15.76 then run the following command
#cd 5.15.76
#Step 3: Please check the bits of your system, enter the 32 directory for 32-bit systems, and enter the 64 directory for 64-bit systems
cd 32
#cd 64
#Step 4: Enter your corresponding model command to install the driver, pay attention to the selection of the I2C DIP switch
#2.8inch DSI LCD 480×640:
sudo bash ./WS_xinchDSI_MAIN.sh 28 I2C0
#3.4inch DSI LCD (C) 800×800
sudo bash ./WS_xinchDSI_MAIN.sh 34C I2C0
#4inch DSI LCD 480×800:
sudo bash ./WS_xinchDSI_MAIN.sh 40 I2C0
#4inch DSI LCD (C) 720×720
sudo bash ./WS_xinchDSI_MAIN.sh 40C I2C0
#7inch DSI LCD (C) 1024×600:
sudo bash ./WS_xinchDSI_MAIN.sh 70C I2C1
#7.9ich DSI LCD 400×1280:
sudo bash ./WS_xinchDSI_MAIN.sh 79 I2C0
#11.9inch DSI LCD 320×1480:
sudo bash ./WS_xinchDSI_MAIN.sh 119 I2C0
#8inch DSI LCD (C) 1280×800驱动:
sudo bash ./WS_xinchDSI_MAIN.sh 80C I2C0
#10.1inch DSI LCD (C) 1280×800驱动:
sudo bash ./WS_xinchDSI_MAIN.sh 101C I2C0
#Step 5: Wait for a few seconds, when the driver installation is complete and no error is prompted, restart and load the DSI driver and it can be used normally
sudo reboot
Note: The above steps need to ensure that the Raspberry Pi can be connected to the Internet normally.
===========================================================================================================
#第一步:下载并进入Waveshare-DSI-LCD驱动文件夹
git clone https://github.com/waveshare/Waveshare-DSI-LCD
cd Waveshare-DSI-LCD
#第二步:终端输入uname -a查看内核版本,并cd到对应文件目录
#5.15.61则运行下面指令
cd 5.15.61
#5.15.76则运行下面指令
#cd 5.15.76
#第三步:请确定当前使用的系统是多少位的,32位系统进入32目录,64位系统进入64目录
cd 32
#cd 64
#第四步:选择您对应的型号,复制指令安装驱动,如需修改I2C0 / I2C1,请注意选择正确的拨码开关再上电使用;
#2.8inch DSI LCD 480×640:
sudo bash ./WS_xinchDSI_MAIN.sh 28 I2C0
#3.4inch DSI LCD (C) 800×800
sudo bash ./WS_xinchDSI_MAIN.sh 34C I2C0
#4inch DSI LCD 480×800:
sudo bash ./WS_xinchDSI_MAIN.sh 40 I2C0
#4inch DSI LCD (C) 720×720
sudo bash ./WS_xinchDSI_MAIN.sh 40C I2C0
#7inch DSI LCD (C) 1024×600:
sudo bash ./WS_xinchDSI_MAIN.sh 70C I2C1
#7.9ich DSI LCD 400×1280:
sudo bash ./WS_xinchDSI_MAIN.sh 79 I2C0
#11.9inch DSI LCD 320×1480:
sudo bash ./WS_xinchDSI_MAIN.sh 119 I2C0
#8inch DSI LCD (C) 1280×800 :
sudo bash ./WS_xinchDSI_MAIN.sh 80C I2C0
#10.1inch DSI LCD (C) 1280×800:
sudo bash ./WS_xinchDSI_MAIN.sh 101C I2C0
#第五步:等待几秒,当驱动安装完成,没有提示任何报错时,进行重启加载DSI驱动即可正常使用
sudo reboot
#注意:以上步骤需要确保树莓派可以正常连接到互联网。