黑屏说明
- 显示器只有VGA接口,要将树莓派连接到显示器上,必须使用HDMI装VGA转换器
- 在实际使用中,发现用HDMI转VGA方式连接显示器,显示器会出现黑屏的现象
配置准备
- 树莓派3开发板
- 安装Raspbian系统
- VGA显示器
- HDMI-VGA转换器
配置步骤
1. 设置config.txt, 参考设置config.txt, 建议修改前先做备份。
2. 复制或修改为如下的选项
- disable_overscan=1
-
- hdmi_force_hotplug=1
-
- #uncomment to force a specific HDMI mode (this will force VGA)
- hdmi_group=2
- hdmi_mode=35
- hdmi_ignore_edid=0xa5000080
-
- # uncomment to force a HDMI mode rather than DVI. This can make audio work in
- # DMT (computer monitor) modes
- hdmi_drive=2
-
- # uncomment to increase signal to HDMI, if you have interference, blanking, or
- # no display
- config_hdmi_boost=4
-
- # uncomment for composite PAL
- #sdtv_mode=2
-
-
- # Uncomment some or all of these to enable the optional hardware interfaces
- dtparam=i2c_arm=on
- #dtparam=i2s=on
- dtparam=spi=on
-
- # Uncomment this to enable the lirc-rpi module
- dtoverlay=lirc-rpi
-
- # Enable audio (loads snd_bcm2835)
- dtparam=audio=on
- enable_uart=1
- dtoverlay=w1-gpio
复制代码
3. 如何设置hdmi_group和hdmi_mode,参考设置分辨率
4. 设置完成,重新启动即可正常显示。
|