首页 > 其他 > 详细

树梅派屏幕旋转方法

时间:2021-06-02 22:44:27      阅读:24      评论:0      收藏:0      [点我收藏+]

旋转你的树莓派屏幕之前,首先要看你的树莓派用的是哪种显示驱动:

sudo raspi-config

打开树莓派的设置,进入Advanced Options - GL Driver

查看目前正在用哪种驱动,不同版本的raspbian的目录稍有差别,自己看就好了。

情况一:使用的是实验版的openGL驱动:
使用 xrandr  命令来旋转屏幕

xrandr -o left     to rotate to the left

我用这个命令直接就是可以用的了xrandr -o right     to rotate to the right

xrandr -o normal     to go back to a normal screen

xrandr -o inverted     to flip the screen upside down

注意:这个命令的效果是一次性的,重启之后就会恢复正常。

情况二:使用传统的驱动
修改启动配置文件

sudo nano /boot/config.txt

添加以下的某一行:

display_rotate=0           不旋转 Normal

display_rotate=1           转90 degrees

display_rotate=2           转180 degrees

display_rotate=3           转270 degrees

display_rotate=0x10000        左右翻转horizontal flip

display_rotate=0x20000        上下翻转vertical flip

链接:https://www.jianshu.com/p/657f6e113666

树梅派屏幕旋转方法

原文:https://www.cnblogs.com/guochaoxxl/p/14842963.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!