Browse Source

bump version

master
evan 5 years ago
parent
commit
95f62978d6
  1. 20
      README.md
  2. 2
      remarkable_mouse/remarkable_mouse.py

20
README.md

@ -22,7 +22,7 @@ By default, `10.11.99.1` is used as the address. Seems to work pretty well wirel
specify address, monitor, orientation, password specify address, monitor, orientation, password
``` bash ``` bash
remouse --address 192.168.1.1 --orientation right --monitor 1 --password foobar remouse --address 192.168.1.1 --orientation right --mode fit --monitor 1 --password foobar
``` ```
passwordless login passwordless login
@ -35,8 +35,9 @@ remouse --key ~/.ssh/remarkable
# Usage # Usage
usage: remouse [-h] [--debug] [--key PATH] [--password PASSWORD] usage: remouse [-h] [--debug] [--key PATH] [--password PASSWORD]
[--address ADDRESS] [--orientation {vertical,left,right}] [--address ADDRESS] [--mode {fit,fill}]
[--monitor NUM] [--threshold THRESHOLD] [--evdev] [--orientation {top,left,right,bottom}] [--monitor NUM]
[--threshold THRESH] [--evdev]
use reMarkable tablet as a mouse input use reMarkable tablet as a mouse input
@ -46,9 +47,10 @@ remouse --key ~/.ssh/remarkable
--key PATH ssh private key --key PATH ssh private key
--password PASSWORD ssh password --password PASSWORD ssh password
--address ADDRESS device address --address ADDRESS device address
--orientation {vertical,left,right} --mode {fit,fill} scale setting
--monitor NUM monitor to use --orientation {top,left,right,bottom}
--threshold THRESHOLD position of tablet buttons
stylus pressure threshold (default 1000) --monitor NUM monitor to output to
--evdev use evdev to support pen tilt (requires root, no OSX --threshold THRESH stylus pressure threshold (default 600)
support) --evdev use evdev to support pen pressure (requires root,
Linux only)

2
remarkable_mouse/remarkable_mouse.py

@ -84,7 +84,7 @@ def main():
parser.add_argument('--key', type=str, metavar='PATH', help="ssh private key") parser.add_argument('--key', type=str, metavar='PATH', help="ssh private key")
parser.add_argument('--password', default=None, type=str, help="ssh password") parser.add_argument('--password', default=None, type=str, help="ssh password")
parser.add_argument('--address', default='10.11.99.1', type=str, help="device address") parser.add_argument('--address', default='10.11.99.1', type=str, help="device address")
parser.add_argument('--mode', default='fit', choices=['fit', 'fill'], help="scale setting") parser.add_argument('--mode', default='fill', choices=['fit', 'fill'], help="scale setting")
parser.add_argument('--orientation', default='right', choices=['top', 'left', 'right', 'bottom'], help="position of tablet buttons") parser.add_argument('--orientation', default='right', choices=['top', 'left', 'right', 'bottom'], help="position of tablet buttons")
parser.add_argument('--monitor', default=0, type=int, metavar='NUM', help="monitor to output to") parser.add_argument('--monitor', default=0, type=int, metavar='NUM', help="monitor to output to")
parser.add_argument('--threshold', metavar='THRESH', default=600, type=int, help="stylus pressure threshold (default 600)") parser.add_argument('--threshold', metavar='THRESH', default=600, type=int, help="stylus pressure threshold (default 600)")

Loading…
Cancel
Save