diff --git "a/02_\345\237\272\347\241\200\346\223\215\344\275\234/\345\272\224\347\224\250\345\222\214\346\270\270\346\210\217/assets/\344\275\277\347\224\250OpenRGB\350\256\276\347\275\256\350\256\276\345\244\207\347\201\257\346\225\210/.keep" "b/02_\345\237\272\347\241\200\346\223\215\344\275\234/\345\272\224\347\224\250\345\222\214\346\270\270\346\210\217/assets/\344\275\277\347\224\250OpenRGB\350\256\276\347\275\256\350\256\276\345\244\207\347\201\257\346\225\210/.keep" new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git "a/02_\345\237\272\347\241\200\346\223\215\344\275\234/\345\272\224\347\224\250\345\222\214\346\270\270\346\210\217/assets/\344\275\277\347\224\250OpenRGB\350\256\276\347\275\256\350\256\276\345\244\207\347\201\257\346\225\210/\350\256\276\347\275\256\347\201\257\346\225\210.png" "b/02_\345\237\272\347\241\200\346\223\215\344\275\234/\345\272\224\347\224\250\345\222\214\346\270\270\346\210\217/assets/\344\275\277\347\224\250OpenRGB\350\256\276\347\275\256\350\256\276\345\244\207\347\201\257\346\225\210/\350\256\276\347\275\256\347\201\257\346\225\210.png" new file mode 100644 index 0000000000000000000000000000000000000000..edd003ee20bf91383deb19a485a5ea233ece5238 Binary files /dev/null and "b/02_\345\237\272\347\241\200\346\223\215\344\275\234/\345\272\224\347\224\250\345\222\214\346\270\270\346\210\217/assets/\344\275\277\347\224\250OpenRGB\350\256\276\347\275\256\350\256\276\345\244\207\347\201\257\346\225\210/\350\256\276\347\275\256\347\201\257\346\225\210.png" differ diff --git "a/02_\345\237\272\347\241\200\346\223\215\344\275\234/\345\272\224\347\224\250\345\222\214\346\270\270\346\210\217/\344\275\277\347\224\250OpenRGB\350\256\276\347\275\256\350\256\276\345\244\207\347\201\257\346\225\210.md" "b/02_\345\237\272\347\241\200\346\223\215\344\275\234/\345\272\224\347\224\250\345\222\214\346\270\270\346\210\217/\344\275\277\347\224\250OpenRGB\350\256\276\347\275\256\350\256\276\345\244\207\347\201\257\346\225\210.md" new file mode 100644 index 0000000000000000000000000000000000000000..da8022e5495594d6844dd751dc92bf1e7de15ab2 --- /dev/null +++ "b/02_\345\237\272\347\241\200\346\223\215\344\275\234/\345\272\224\347\224\250\345\222\214\346\270\270\346\210\217/\344\275\277\347\224\250OpenRGB\350\256\276\347\275\256\350\256\276\345\244\207\347\201\257\346\225\210.md" @@ -0,0 +1,59 @@ +# 在openKylin系统可以使用OpenRGB来控制设备灯效 + +## 介绍 + +OpenRGB是一款开源的跨平台RGB灯光控制工具,拥有强大的硬件兼容性,支持华硕 ASUS AURA、罗技 LIGHTSYNC RGB、微星 Mystic Light Sync 等主流认证的RGB设备。 + +## 下载安装 + +前往OpenRGB官网:https://openrgb.org/releases.html ,下载对应的架构版本的deb包。 + + +## 启用内存灯控模块 + +内存灯控需要启用模块: + +``` +# 临时加载模块(重启后失效) +sudo modprobe i2c-dev + +sudo modprobe i2c-i801 # Intel 主板用此驱动 + +sudo modprobe i2c-piix4 # AMD 主板用此驱动 + +# 检查是否加载成功 +lsmod | grep i2c +``` + +如果看到如下报错,请检查模块是否正确启用: +``` +Some internal devices may not be detected: +One or more I2C or SMBus interfaces failed to initialize. +RGB DRAM modules, some motherboards' onboard RGB lighting, and RGB Graphics Cards, will not be available in OpenRGB without I2C or SMBus. +How to fix this: +On Linux, this is usually because the i2c-dev module is not loaded. +You must load the i2c-dev module along with the correct i2c driver for your motherboard. This is usually i2c-piix4 for AMD systems and i2c-i801 for Intel systems. +See help.openrgb.org for additional troubleshooting steps if you keep seeing this message. + +If you are not using internal RGB on a desktop this message is not important to you +``` + +建议设置模块开机自启动: +``` +# 创建或编辑模块配置文件 +sudo vim /etc/modules-load.d/i2c.conf + +# 在文件中添加以下内容 然后 :wq 保存退出 +i2c-dev + +i2c-i801 # Intel + +i2c-piix4 # AMD +``` +重启后生效 + +## 设置灯效 + +启动后可以开始设置灯效了: + +![输入图片说明](assets/%E4%BD%BF%E7%94%A8OpenRGB%E8%AE%BE%E7%BD%AE%E8%AE%BE%E5%A4%87%E7%81%AF%E6%95%88/%E8%AE%BE%E7%BD%AE%E7%81%AF%E6%95%88.png) \ No newline at end of file