mirror of
https://github.com/archlinuxarm/wiki.git
synced 2024-11-08 22:45:42 +00:00
C101PA backlight control
This commit is contained in:
parent
e8334970b0
commit
df4d2bab47
1 changed files with 9 additions and 0 deletions
|
@ -11,3 +11,12 @@ ALSA_CONFIG_UCM=/opt/alsa/ucm alsaucm -c rk3399-gru-sound set _verb HiFi
|
||||||
```
|
```
|
||||||
|
|
||||||
Note that the port will display as "Headphones" despite using the speakers. When paired with pulseaudio and pulseaudio-alsa, be aware that the full volume range is addressed through levels 0-9 of the Master volume control. Levels 10-100 provide no additional gain.
|
Note that the port will display as "Headphones" despite using the speakers. When paired with pulseaudio and pulseaudio-alsa, be aware that the full volume range is addressed through levels 0-9 of the Master volume control. Levels 10-100 provide no additional gain.
|
||||||
|
|
||||||
|
## Backlight control
|
||||||
|
Add this udev rule at `/etc/udev/rules.d/backlight.rules`, and add your user to the `video` group.
|
||||||
|
|
||||||
|
```
|
||||||
|
SUBSYSTEM=="backlight",RUN+="/usr/bin/chgrp video /sys/class/backlight/%k/brightness /sys/class/backlight/%k/bl_power",RUN+="/usr/bin/chmod 664 /sys/class/backlight/%k/brightness /sys/class/backlight/%k/bl_power"
|
||||||
|
```
|
||||||
|
|
||||||
|
This will allow you to change the backlight brightness by writing values from 0 to 65535 to `/sys/class/backlight/backlight/brightness`.
|
||||||
|
|
Loading…
Reference in a new issue