Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gnurou/nct6795_led
Linux Kernel Module for NCT6795D LEDs control
https://github.com/gnurou/nct6795_led
kernel kernel-module led linux
Last synced: 8 days ago
JSON representation
Linux Kernel Module for NCT6795D LEDs control
- Host: GitHub
- URL: https://github.com/gnurou/nct6795_led
- Owner: Gnurou
- Created: 2019-05-19T06:24:50.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-02-14T03:24:48.000Z (almost 3 years ago)
- Last Synced: 2024-11-07T07:51:29.553Z (about 2 months ago)
- Topics: kernel, kernel-module, led, linux
- Language: C
- Homepage:
- Size: 53.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Linux Kernel Module for NCT6795D LEDs
====================================This is a basic kernel module for controlling the LEDs found on motherboards
with the NCT6795D chip (and possibly others, not supported yet).How to build
------------Just do a `make && sudo make install && sudo depmod -a`.
Usage and parameters
--------------------Run
# sudo modprobe leds_nct6795d
To insert the module. This should create led devices under
`/sys/class/leds/nct6795d:*`, one per red, green, and blue component. Each
device supports intensity in the [0-15] range.The module can also take parameters to set the LEDs initial value, e.g.
# sudo modprobe leds_nct6795d r=7, g=7, b=7
will set the LED intensity to half of maximum brightness.
Credit
------
The LED programming patterns have been reproduced from the
[msi-rgb project](https://github.com/nagisa/msi-rgb).