Add quirk entry for Acer Predator PHN16S-71#16
Open
mariuszkopowski wants to merge 1 commit into
Open
Conversation
Related finding: PHN16-73 RGB static requires I2C-HID (ENEK5130), not WMISharing this in case it applies to PHN16S-71 as well (same predator_v4 generation). On the PHN16-73, WMI method 6 (static RGB) and method 20 (dynamic with mode=0) both return What actually worksThe RGB controller on these newer models is an I2C-HID device (ENEK5130): Static color via # Packet: a4 21 02 64 00 00 RR GG BB brightness 00
packet = bytes([0xa4, 0x21, 0x02, 0x64, 0x00, 0x00, R, G, B, brightness, 0x00])
fd = os.open("/dev/hidraw2", os.O_RDWR)
HIDIOCSFEATURE = 0xC0004806 | (len(packet) << 16)
fcntl.ioctl(fd, HIDIOCSFEATURE, packet)Tested: all colors work, changes reliably. Limitation: one color for entire keyboard (no per-zone via HID). Implication for the kernel moduleFor models with ENEK5130, the
Check if PHN16S-71 has ENEK5130cat /sys/class/hidraw/hidraw*/device/uevent | grep ENEKIf it shows References
|
Author
|
HID_NAME=ENEK5130:00 0CF2:5130 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi, I have a Predator PHN16S-71. Sadly, the driver does not support it, but I have tested it using DAMX. When loaded, all features work except the keyboard RGB and RGB mode. Everything else works perfectly. Hence, I'm adding support for PHN16S-71 based on PHN16-71.