系统:2015-11-21-raspbian-jessie.img LCD: 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”了
|