Skip to content

Commit

Permalink
Merge pull request #33 from chabad360/patch-1
Browse files Browse the repository at this point in the history
Fix #18
  • Loading branch information
Evidlo committed Oct 25, 2020
2 parents 090ceb0 + cab6fce commit 89505ec
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions remarkable_mouse/evdev.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,16 @@ def create_local_device():
libevdev.EV_ABS.ABS_X,
libevdev.InputAbsInfo(
minimum=0,
maximum=MAX_ABS_X
maximum=MAX_ABS_X,
resolution=2531
)
)
device.enable(
libevdev.EV_ABS.ABS_Y,
libevdev.InputAbsInfo(
minimum=0,
maximum=MAX_ABS_Y
maximum=MAX_ABS_Y,
resolution=2531
)
)
device.enable(
Expand Down

0 comments on commit 89505ec

Please sign in to comment.