Browse Source

Merge pull request #23 from catskul/catskul/hex-device-id

chore: switch device id number to hex for easier matching with header…
master
Evan Widloski 4 years ago committed by GitHub
parent
commit
814036cc00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      remarkable_mouse/evdev.py

4
remarkable_mouse/evdev.py

@ -25,8 +25,8 @@ def create_local_device(): @@ -25,8 +25,8 @@ def create_local_device():
# Set device properties to emulate those of Wacom tablets
device.name = 'reMarkable tablet'
device.id = {
'bustype': 24,
'vendor': 1386,
'bustype': 0x18, # i2c
'vendor': 0x056a, # wacom
'product': 0,
'version': 54
}

Loading…
Cancel
Save