Home | History | Annotate | only in /external/autotest/client/cros/input_playback
Up to higher level directory
NameDateSize
__init__.py22-Oct-20200
click_events.template22-Oct-202010.8K
input_playback.py22-Oct-202022.1K
keyboard.prop22-Oct-2020701
keyboard.py22-Oct-20202K
keyboard_a22-Oct-2020208
keyboard_alt+home22-Oct-2020416
keyboard_alt+shift+i22-Oct-2020624
keyboard_b+a+d+enter22-Oct-2020832
keyboard_ctrl+alt+f122-Oct-2020623
keyboard_ctrl+alt+f222-Oct-2020623
keyboard_ctrl+alt+z22-Oct-2020591
keyboard_ctrl+f522-Oct-2020416
keyboard_ctrl+p22-Oct-2020416
keyboard_ctrl+shift+c22-Oct-20203K
keyboard_ctrl+shift+f322-Oct-2020624
keyboard_ctrl+shift+i22-Oct-20201.9K
keyboard_ctrl+shift+j22-Oct-20201.6K
keyboard_ctrl+shift+n22-Oct-2020624
keyboard_ctrl+shift+q22-Oct-2020900
keyboard_ctrl+t22-Oct-2020416
keyboard_ctrl+w22-Oct-2020415
keyboard_d22-Oct-2020208
keyboard_down22-Oct-2020208
keyboard_enter22-Oct-2020132
keyboard_escape22-Oct-2020132
keyboard_f22-Oct-2020208
keyboard_f122-Oct-2020207
keyboard_f1022-Oct-2020207
keyboard_f1222-Oct-20201.1K
keyboard_f222-Oct-2020207
keyboard_f322-Oct-2020207
keyboard_f422-Oct-2020200
keyboard_f622-Oct-2020208
keyboard_f722-Oct-2020208
keyboard_f822-Oct-2020207
keyboard_f922-Oct-2020207
keyboard_g+o+o+d+enter22-Oct-2020660
keyboard_s22-Oct-2020208
keyboard_search+down22-Oct-2020746
keyboard_search+f222-Oct-2020502
keyboard_search+L22-Oct-2020416
keyboard_search+left22-Oct-2020548
keyboard_search+right22-Oct-2020548
keyboard_search+up22-Oct-2020680
keyboard_shift+tab22-Oct-2020417
keyboard_tab22-Oct-2020208
keyboard_w22-Oct-2020208
mouse.prop22-Oct-2020698
mouse_center_cursor_gesture22-Oct-202041.5K
README22-Oct-2020842
stylus.prop.template22-Oct-2020816
stylus.py22-Oct-20204.4K

README

      1 How to add new gesture files:
      2 1. Obtain a chromebook with a test image and the input source in question
      3     (either onboard or plugged in).
      4 2. Determine the input node of the input, e.g. /dev/input/event4.  Either:
      5     a. run evtest command on the device.  The output should be names and nodes
      6        of all detected input sources.
      7     b. run touch_UpdateErrors test on the device and read the logs.  All input
      8        devices should be listed in .INFO along with their nodes.
      9 3. RECORD (from the device):
     10     evemu-record $node -1 > $filename
     11 4. PLAY BACK (for verification, from the device):
     12     evemu-play --insert-slot0 $node < $filename
     13 
     14 Other potentially useful commands:
     15 - Record device properties for emulation:
     16     evemu-describe $node
     17 - Emulate device:
     18     evemu-device < $filename
     19 
     20 
     21 See also https://www.freedesktop.org/wiki/Evemu/
     22