最新在使用的Raspberry Pi Zero W
V1.3
在使用目前(2018.09.26
)的系统的时候发现无法正常输出内容到屏幕上面,屏幕一直黑屏无信号。
原因在于Raspberry Pi Zero W
在启动的时候没有正确检测到屏幕信号,导致没有正常输出。
解决方法是打开启动配置文件/boot/config.txt
, 找到如下内容:
1 2 3 4 5 6 |
.................. # uncomment if hdmi display is not detected and composite is being output #hdmi_force_hotplug=1 ................. |
然后去掉注释,修改为如下:
1 2 |
# uncomment if hdmi display is not detected and composite is being output hdmi_force_hotplug=1 |