使用Android的Raspberry Pi 3屏幕方向
作者:互联网
我刚买了一台带有7英寸显示屏触摸屏和外壳的Raspberry Pi 3.
不幸的是,外壳不允许我手动旋转屏幕,所以我的应用程序颠倒了.
我尝试使用以下adb命令从控制台执行此操作,但没有运气:
adb shell content insert --uri content://settings/system --bind name:s:accelerometer_rotation --bind value:i:0
然后
adb shell content insert --uri content://settings/system --bind name:s:user_rotation --bind value:i:1
要么
adb shell content insert --uri content://settings/system --bind name:s:user_rotation --bind value:i:3
有没有办法从配置标志直接执行它,从启动处理屏幕方向?
解决方法:
我终于找到了如何实现它.
找到解决方案:Android Things with Rasp3 7 inch touchscreen
您必须从笔记本电脑上的SD卡安装启动分区,然后编辑/boot/config.txt文件并添加以下行:
lcd_rotate=2
通过添加此行,显示屏和触摸屏都将旋转,与display_rotate = 2相比,其中仅显示旋转且触摸屏保持颠倒.
标签:raspberry-pi3,android-things,android,raspberry-pi 来源: https://codeday.me/bug/20190928/1829208.html