访问 Yoga 2 Pro 上的陀螺仪和加速器

访问 Yoga 2 Pro 上的陀螺仪和加速器

我有一台联想 Yoga 2 Pro,想让陀螺仪运行起来。

但是我应该如何开始访问它并将其包含在我的系统中?(在这里我做了一个我的联想 Yoga 2lspci -vvv的转储lsmod

我想在旋转笔记本电脑时自动旋转屏幕。


我已经成功创建了一个脚本,手动使用键盘快捷键 Ctrl+Alt+F5 旋转屏幕(参见https://askubuntu.com/a/485632/34298


也许有办法改编这个脚本?https://gist.github.com/emiller/6488449


我还尝试添加Karol Krizka 的自动旋转 PPA并安装它:

echo "deb http://ppa.launchpad.net/kkrizka/thinkpad-x61t/ubuntu lucid main" | sudo tee /etc/apt/sources.list.d/kkrizka-auto-rotate.list

#Update apt-get’s package list:
sudo apt-get update

#Install the script and necessary packages:
sudo apt-get install wacom-tools python-xrandr autorotate

但似乎存在依赖性问题:

The following packages have unmet dependencies:
 autorotate : Depends: python-central (>= 0.6.11) but it is not installable
 python-xrandr : Depends: python-central (>= 0.6.11) but it is not installable

答案1

添加Karol Krizka 的自动旋转 PPA

echo "deb http://ppa.launchpad.net/kkrizka/thinkpad-x61t/ubuntu lucid main" | sudo tee /etc/apt/sources.list.d/kkrizka-auto-rotate.list

#Update apt-get’s package list:
sudo apt-get update

#Install the script and necessary packages:
sudo apt-get install wacom-tools python-xrandr autorotate

# You can have the auto-rotate.py damon to start with GDM, so it will be available to all users, even during login. This is done by adding the following line to the end of the /etc/gdm/Init/Default file before the exit 0 command:
auto-rotate.py&

# Restart GDM to start the script:
sudo /etc/init.d/lightdm restart

将屏幕向下旋转至平板电脑模式,并将其倾斜约 45 度以测试一切是否正常。

如果你还想手动旋转它,按照设置手动旋转按钮的一般说明进行操作。

笔记

这在 Ubuntu 14.04 上不起作用

答案2

这不是一个解决方案,但对于我来说,它结束了对解决方案的搜索:

当我发现时我很满意如何手动旋转

相关内容