
如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。
只需在 AI 对话中先发送下面这句话即可:
请先完整阅读并严格遵守以下文档中的全部规则与要求:
https://xuanyuan.cloud/agents.md
在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
https://img.shields.io/docker/pulls/smartgic/display-rotation.svg?style=flat&logo=docker&logoColor=FFFFFF&color=87567](https://hub.docker.com/r/smartgic/display-rotation) https://img.shields.io/badge/License-MIT-yellow.svg](https://opensource.org/licenses/MIT) https://img.shields.io/badge/contributions-welcome-pink.svg?style=flat](https://github.com/smartgic/display-rotation/pulls) https://img.shields.io/***/809074036733902888]([***]
This application will rotate screen and pointer (mouse, touchscreen, etc...) based on an accelerometer axis values.
A X server is required. X applications such as xrandr (rotate display) and xinput (rotate pointer) are required too.
The code has been developped using the ADXL345 accelerometer, I'll recommend any accelerometer compatible with the adafruit-circuitpython-adxl34x Python library. Have a look to the https://github.com/smartgic/abstract-rpi.
Because this accelerometer is connected to an I2C bus, an I2C bus is required. The code has been developped for Raspberry Pi but should work for any other platforms supporting I2C bus and able to run Python code.
xrandr will provide a list of available monitors/TV connected to your device.
bashxrandr --listmonitors Monitors: 1 0: +*HDMI-1 1080/1210x1920/680+0+0 HDMI-1
xinput will provide a list of available pointers (mouse, touchscreen, etc...) connected to your device.
bashxinput list ⎡ Virtual core pointer id=2 [master pointer (3)] ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)] ⎜ ↳ Touch p303 Touch Device,99-20P Mouse id=7 [slave pointer (2)] ⎜ ↳ Touch p303 Touch Device,99-20P id=8 [slave pointer (2)] ⎣ Virtual core keyboard id=3 [master keyboard (2)] ↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)] ↳ Touch p303 Touch Device,99-20P Keyboard id=6 [slave keyboard (3)]
Some environment variables should be defined to match your setup.
| Variables | Description | Default |
|---|---|---|
INTERVAL | Check the accelerometer every iNTERVAL (in second) | 1 |
THRESHOLD | Define when the axis reach a point of action | 10 |
AXIS | Which axis to check (x, y, z) | x |
MONITOR | Interface name where the monitor is connected | HDMI-1 |
POINTER | Name of the mouse, touchscreen, etc... to rotate | Touch p303 Touch Device,99-20P |
ORIENTATION | Direction where the monitor will be rorated | right |
bashgit clone https://github.com/smartgic/display-rotation.git cd display-rotation python3 -m venvs ~/venvs/display-rotation source ~/venvs/display-rotation/bin/activate pip install -r requirements.txt cd app export POINTER="Logitech M325" python rotation.py
Supported architectures for Docker smartgic/display-rotation image.
| Architecture | Information |
|---|---|
amd64 | Such as AMD and Intel processors |
arm/v6 | Such as Raspberry Pi 1 |
arm/v7 | Such as Raspberry Pi 2/3/4 |
arm64 | Such as Raspberry Pi 4 64-bit |
ppc64 | Such as PowerPC 64 platforms |
The container needs to be authenticated to access the X Server and run the GUI. One way to do it is to use xauth (part of the xauth package on Debian/Ubuntu) which will generate a X authentication token. This token will have to be mounted as a volume within the container to be then used via the XAUTHORITY environment variable.
bash$ touch ~/.docker.xauth $ xauth nlist :0 | sed -e 's/^..../ffff/' | xauth -f ~/.docker.xauth nmerge -
bashdocker run -d \ --volume /sys:/sys:ro \ --volume /tmp/.X11-unix:/tmp/.X11-unix \ --volume ~/.docker.xauth:/tmp/.docker.xauth:ro \ --device /dev/i2c-1 \ --env DISPLAY=:0 \ --env XAUTHORITY=/tmp/.docker.xauth \ --env THRESHOLD=10 \ --env AXIS=x \ --env MONITOR=HDMI-1 \ --env POINTER="Logitech M325" \ --env INTERVAL=1 \ --env ORIENTATION=right \ --name display_rotation \ smartgic/display-rotation:latest
/dev/i2c-1 could change depending the hardware used (i2c from Raspberry Pi 4B).
Make sure docker-compose is installed if not use your package manager or pip.
bashgit clone https://github.com/smartgic/display-rotation.git cd display-rotation docker-compose up -d
Developed by Smart"Gic.
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务