You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Adam Honse 87043cde65 Fix issue with Windows in hueplusplus library 5 years ago
.github Create FUDING.yml for GitHub 5 years ago
.gitlab/issue_templates Quick formatting change to correct upstream issue and refresh issue 5 years ago
Controllers Philips Hue (Standard and Entertainment Mode) Support using hueplusplus library 5 years ago
RGBController Override UpdateLEDs() for RGBController_Network to always process synchronously 5 years ago
debian Philips Hue (Standard and Entertainment Mode) Support using hueplusplus library 5 years ago
dependencies Fix issue with Windows in hueplusplus library 5 years ago
fedora Increment version number post-release 5 years ago
i2c_smbus Don't delete i2c bus list on redetect, as WMI query issues prevent them from being redetected 5 years ago
i2c_tools Add i2c tool for reading multiple bytes from an SMBus device register 6 years ago
net_port Fixes for memory issues detected by valgrind 6 years ago
pci_ids Add Non OC 2060S PCIe ID, correct RAM 5 years ago
qt Prevent theme box from saving theme setting until initialized 5 years ago
scripts Adding test stages to Linux builds 5 years ago
serial_port Clean up serial_port class and add MacOS support (only standard baud rates for now) 5 years ago
super_io Fixes for memory issues detected by valgrind 6 years ago
wmi Revert change disabling redetection of i2c interfaces and fix disconnected WMI failure by always reconnecting before query 5 years ago
.gitignore Add lower case openrgb executable name to .gitignore 5 years ago
.gitlab-ci.yml Philips Hue (Standard and Entertainment Mode) Support using hueplusplus library 5 years ago
.gitmodules Continued the work started by !62 with respect to adding support for Cooler Master keyboards using the libcmmk library. 5 years ago
60-openrgb.rules New controller for SteelSeries QCK Mousemat 5 years ago
Detector.h Make detectors for QMK OpenRGB controller configurable 5 years ago
DeviceDetector.h Implement dynamic detectors - run-once functions that can register detectors dynamically 5 years ago
LICENSE Add LICENSE 7 years ago
LogManager.cpp Tiny fixups (server conn info leak closed, log va leak closed, config dir optimized) 5 years ago
LogManager.h Small adjustments in LogManager 5 years ago
NetworkClient.cpp Rework network client callback pipeline - route callbacks from clients through ResourceManager so that device list callbacks get called. Fixes remote devices not showing up in plugins. 5 years ago
NetworkClient.h Rework network client callback pipeline - route callbacks from clients through ResourceManager so that device list callbacks get called. Fixes remote devices not showing up in plugins. 5 years ago
NetworkProtocol.cpp Initial network files 6 years ago
NetworkProtocol.h OpenRGB version 0.6 5 years ago
NetworkServer.cpp Autoclose updated 5 years ago
NetworkServer.h Autoclose updated 5 years ago
OpenRGB.h Rename OpenAuraSDK.cpp to OpenRGB.cpp and remove old unused code 6 years ago
OpenRGB.patch Add timeouts to i2c-nct6775 driver and fix kernel segfault caused by byte access with no data 6 years ago
OpenRGB.pro Philips Hue (Standard and Entertainment Mode) Support using hueplusplus library 5 years ago
OpenRGBPluginInterface.h A bit of cleanup (Remove depreciated entry from PluginInfo Struct) 5 years ago
PluginManager.cpp Logger tweaks 5 years ago
PluginManager.h Move plugin initialization into PluginManager and log plugin loading 5 years ago
ProfileManager.cpp Fix mismatched new[] / delete 5 years ago
ProfileManager.h Fixing profile loading #1135 5 years ago
README.md Philips Hue (Standard and Entertainment Mode) Support using hueplusplus library 5 years ago
ResourceManager.cpp Implement dynamic detectors - run-once functions that can register detectors dynamically 5 years ago
ResourceManager.h Implement dynamic detectors - run-once functions that can register detectors dynamically 5 years ago
SettingsManager.cpp SettingsManager: Catch exception with constant reference parameter. 5 years ago
SettingsManager.h Initial commit for Plugins 5 years ago
cli.cpp Enumerate Wireless connected Logitech Lightspeed (Unifying) devices 5 years ago
filesystem.h Adding test stages to Linux builds 5 years ago
main.cpp Wait up to 5 seconds for the local server connection to retrieve all controllers before continuing, so that CLI mode has all controllers available for applying changes 5 years ago

README.md

OpenRGB

Visitors Pipeline Status

Visit our website at https://openrgb.org!

One of the biggest complaints about RGB is the software ecosystem surrounding it. Every manufacturer has their own app, their own brand, their own style. If you want to mix and match devices, you end up with a ton of conflicting, functionally identical apps competing for your background resources. On top of that, these apps are proprietary and Windows-only. Some even require online accounts. What if there was a way to control all of your RGB devices from a single app, on both Windows and Linux, without any nonsense? That is what OpenRGB sets out to achieve. One app to rule them all.

Features

  • Set colors and select effect modes for a wide variety of RGB hardware
  • Save and load profiles
  • Control lighting from third party software using the OpenRGB SDK
  • Command line interface
  • Connect multiple instances of OpenRGB to synchronize lighting across multiple PCs
  • Can operate standalone or in a client/headless server configuration
  • View device information
  • No official/manufacturer software required
  • Graphical view of device LEDs makes creating custom patterns easy

Supported Devices

Configuration

WARNING!

This project interacts directly with hardware using reverse engineered protocols. While we do our best to make sure we're sending the right data, there is always some risk in sending data to hardware when we don't understand exactly how that hardware works.

There have been two instances of hardware damage in OpenRGB's development and we've taken precautions to prevent it from happening again.

  • The MSI Mystic Light code reportedly bricked the RGB on certain MSI boards when sending certain modes. This code has been disabled and MSI Mystic Light motherboards will not work with OpenRGB at this time.
  • There were reports of bricked Gigabyte Aorus Z390 motherboards caused by dumping SMBus address 0x68 in an attempt to reverse engineer the RGB. Due to this, the SMBus Tools page on OpenRGB is hidden by default now as it has no real use to non-developers.
  • To enable the MSI Mystic Light code, you must uncomment the detection macro in the Mystic Light controller detection code and recompile.

OpenRGB_Device_View

Windows

  • Pre-built binaries are available under the Releases section on GitLab. - You will need the Microsoft Visual 2019 C++ runtime installed. You can get it here
  • If you wish to build the application yourself:
    1. Download the latest Visual Studio Community Edition and Qt Creator.
    2. Open the OpenRGB.pro project in Qt Creator.
    3. Use the MSVC compiler kit, either 32- or 64-bit, to build the application.
    4. Run the project from Qt Creator. If you want to use your custom build standalone, download the latest matching Release package and replace the OpenRGB.exe in it with your new build.
  • You must run the application as Administrator the first time to allow InpOut32 to set up. It can be run as a normal user afterwards

USB Access

  • Early versions of OpenRGB used the WinUSB driver, installed using Zadig. This is no longer required, and you need to uninstall the WinUSB driver if you previously installed it. You can uninstall the WinUSB driver by following this guide.

Linux

  • Pre-built binaries in AppImage format are available under the Releases section on GitLab.
  • You can build the project using Qt Creator or on the command line.
    1. Install build dependencies
      • Debian/Ubuntu: sudo apt install git build-essential qtcreator qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools libusb-1.0-0-dev libhidapi-dev pkgconf
      • Debian (before bullseye) or Ubuntu (before 21.04): sudo apt install git build-essential qtcreator qt5-default libusb-1.0-0-dev libhidapi-dev pkgconf
      • Fedora: sudo dnf install git make automake gcc gcc-c++ qt-creator qt5-devel hidapi-devel libusb-devel
    2. git clone https://gitlab.com/CalcProgrammer1/OpenRGB
    3. cd OpenRGB
    4. qmake OpenRGB.pro
    5. make -j8
  • Run the application with ./openrgb
  • You can also build a Debian package (.deb) from this source code with dpkg-buildpackage -us -B

SMBus Access

  • SMBus access is necessary for controlling RGB RAM and certain motherboard on-board LEDs.
  • If you are not trying to use OpenRGB to control RGB RAM or motherboard LEDs, you may skip this section.
  • ASUS and ASRock motherboards have their RGB controller on an SMBus interface that is not accessible by an unmodified Linux kernel (for now). I am working on getting patches submitted upstream, but for now you must patch your kernel with the provided OpenRGB.patch file.
  • Allowing access to SMBus:
    1. Load the i2c-dev module: sudo modprobe i2c-dev
    2. Load the i2c driver for your chipset:
      • Intel:
        • sudo modprobe i2c-i801
        • sudo modprobe i2c-nct6775 - Secondary controller for motherboard LEDs (requires patch)
      • AMD:
        • modprobe i2c-piix4
        • Unmodified kernel will have one interface, patched kernel will have two. The first at 0x0B00 and the second at 0x0B20. The 0x0B20 interface is for motherboard LEDs.
  • Instructions on patching the kernel:
  • Some Gigabyte/Aorus motherboards have an ACPI conflict with the SMBus controller.
    • Add acpi_enforce_resources=lax to your kernel command line and reboot. The controller should now show up.
  • You'll have to enable user access to your SMBus if you don't run as root.
    • List all SMBus controllers: sudo i2cdetect -l
    • Note the number for PIIX4, I801, and NCT6775 controllers.
    • Give user access to those controllers, for instance: sudo chmod 777 /dev/i2c-0

USB Access

  • USB devices require udev rules to access as a normal user.
  • You can run OpenRGB as root to detect all USB devices.
  • Udev rules are included in this repo:
    • Copy the 60-openrgb.rules file to /etc/udev/rules.d/
    • Reload rules with sudo udevadm control --reload-rules && sudo udevadm trigger

MacOS

  • Pre-built binaries in zipped application package format are available under the Releases section on GitLab.
  • You can build the project using Qt Creator or on the command line.
    1. Install build dependencies with Homebrew
      • Install Homebrew by following the instructions at https://brew.sh/
      • brew install git qt5 hidapi libusb
      • brew link qt5
    2. Create a local certificate called OpenRGB with code signing capability
    3. git clone https://gitlab.com/CalcProgrammer1/OpenRGB
    4. cd OpenRGB
    5. qmake OpenRGB.pro
    6. make -j8
    7. macdeployqt OpenRGB.app -codesign=OpenRGB
    8. Copy the OpenRGB.app application package to Applications

SMBus Access

  • SMBus/I2C devices are currently not supported on MacOS.

USB Access

  • USB devices may require the Input Monitoring permission. You can add OpenRGB in System Preferences > Security & Privacy > Privacy.

Join Our Discord

Visit Our Subreddit

How-Tos and FAQs

Support OpenRGB

  • OpenRGB is a project I created to solve a problem I had with the RGB ecosystem. My goal isn't to make money off of this project. That said, people have requested to donate, and donations allow me to buy more RGB stuff to reverse engineer.
  • Donate via PayPal
  • Become a Patron (I'm not doing any Patreon-exclusive content, it's purely for donation)
  • Donate via Bitcoin: 1N83YPu7btXYadPS1neB9zX7X1QTdpyZQ

History of OpenRGB

  • OpenRGB is a continuation of OpenAuraSDK, which itself was created out of reverse engineering work done on the Keyboard Visualizer project. For a complete history of the RGB projects that led to OpenRGB's creation, see the History page.

Contributing

  • Want to contribute support for a new device? Check out the RGBController API page for documentation of how OpenRGB implements device control.

OpenRGB SDK

Applications Supporting OpenRGB SDK

OpenRGB Plugins

Projects Used

Projects Researched

While no code from these projects directly made its way into OpenRGB, these projects have been invaluable resources for protocol information.