fsyzty 发表于 2015-12-15 11:36:59

店里3.5寸LCD屏驱动安装及相关操作

系统:2015-11-21-raspbian-jessie.imgLCD: https://item.taobao.com/item.htm ... GML&id=521961300903发现可以用微雪的驱动。1.资料来自http://www.waveshare.net/wiki/3.5inch_RPi_LCD_(A)2.下载驱动:http://www.waveshare.net/w/upload/9/9d/LCD-show-151020.tar.gz#tar xvf LCD-show-151020.tar.gz
#cd LCD-show/
#sudo ./LCD35-show等待几分钟,系统自动重启,即可正常使用树莓派LCD
如果想切换为HDMI显示,只需运行命令:
#sudo ./LCD-hdmi----------------------------------------------------------------------------------更新需按照以下方式进行,否则可能导致镜像无法运行:
#sudo apt-mark hold raspberrypi-bootloader

#sudo apt-get update

#sudo apt-get upgrade-----------------------------------------------------------------------------------触摸屏校正:1) 客户端执行以下命令
#su pi
#DISPLAY=:0.0 xinput_calibrator
2) 运行该命令后,LCD 屏上提示 4 点校准。分别点击各点完成校准。终端输出一组数据:
Doing dynamic recalibration:
Setting new calibration data: 126, 3734, 3892, 199
记下这组数据。
3) 执行以下命令,编辑 99-calibration.conf:
sudo nano /etc/X11/xorg.conf.d/99-calibration.conf
出现一组数据:
Section “InputClass”
Identifier “calibration”
MatchProduct “ADS7846 Touchscreen”
Option “Calibration” “160 3723 3896 181”
Option “SwapAxes” “1”
EndSection
4) 将 Option “Calibration”之后的一串数字改为之前记下的数字,粘贴数字时候要保留””,即改
为:
Section “InputClass”
Identifier “calibration”
MatchProduct “ADS7846 Touchscreen”
Option “Calibration” “126, 3734, 3892, 199”
Option “SwapAxes” “1”
EndSection
5) 按下 Ctrl+X 选择 Y 保存退出。
6) 重启系统之后即可使用:
sudo reboot
注意:如果存在触摸不准的情况,则再次进行校准并且重启系统。-------------------------------------------------------------------------------------------------软键盘:#sudo apt-get install matchbox-keyboard重新登陆后在“附件”菜单就会有“keyboard”了

chmodu 发表于 2015-12-15 21:16:38

是不是还需要安装别的东西?

fsyzty 发表于 2015-12-16 18:33:38

目录里面不是有个xinput-calibrator的deb吗
液晶屏上面双击打开安装。

garcat 发表于 2016-7-18 15:46:14

问下,不用校准,触摸应该也是可以的吧? 我的屏幕能显示,但是没法触摸。而且允许DISPLAY=0:0 xinput-calibrator,报Unable to connect to X server

garcat 发表于 2016-7-18 15:47:36

我装完后,显示可以,但是不能触摸,有什么方法可以排查下吗?

baiguoshu 发表于 2017-9-28 22:40:33

我执行#sudo ./LCD35-show这一步后系统重启,接上LCD没有任何显示,接HDMI输出显示启动过程中卡死。
咨询问题出在哪里,还如何修复?
页: [1]
查看完整版本: 店里3.5寸LCD屏驱动安装及相关操作