You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have Asus Zenbook S13 OLED 2023 Ryzen 7840U version - UM5302LA
On my laptop this driver works well, but I had few issues, that I fixed by changing asus_touchpad.py
My touchpad has only 2 states (or maybe another brightness values), so what I did is deleted the value that didn't do anything (line 147):
1.a. Also, I changed default level of brightness, so touchpad led is on when I'm enabling numpad (line 203):
# Set default level of brightness to ON state
brightness: int = 1
Calculator key and palm rejection
2.a. Calculator key - probably Gnome issue, but need to mention - I didn't have shortcut for calculator, so I set it manually
2.b. Due to some palm rejection issues, I changed logic for calculator key on touchpad (line 260):
# Check if caclulator was hit #elif (x<0.06*maxx) and (y<0.07*maxy):
ifnumlock:
# Disabling old logic, because touchpad doesn't have brightness levels# brightness = change_brightness(brightness)## Launch calculator only when numpad is onlaunch_calculator()
else:
passcontinue
After this fixes, touchpad\numpad is working great
The text was updated successfully, but these errors were encountered:
SaNch0sE
changed the title
UM5302LA Workaround
UM5302LA Touchpad Workaround
Sep 20, 2023
I have Asus Zenbook S13 OLED 2023 Ryzen 7840U version - UM5302LA
On my laptop this driver works well, but I had few issues, that I fixed by changing
asus_touchpad.py
1.a. Also, I changed default level of brightness, so touchpad led is on when I'm enabling numpad (line 203):
2.a. Calculator key - probably Gnome issue, but need to mention - I didn't have shortcut for calculator, so I set it manually
2.b. Due to some palm rejection issues, I changed logic for calculator key on touchpad (line 260):
After this fixes, touchpad\numpad is working great
The text was updated successfully, but these errors were encountered: