Home | History | Annotate | only in /external/autotest/client/cros/input_playback
Up to higher level directory
NameDateSize
__init__.py21-Aug-20180
click_events.template21-Aug-201810.8K
input_playback.py21-Aug-201821.9K
keyboard.prop21-Aug-2018701
keyboard.py21-Aug-20181.7K
keyboard_alt+shift+i21-Aug-2018624
keyboard_b+a+d+enter21-Aug-2018832
keyboard_ctrl+alt+f121-Aug-2018623
keyboard_ctrl+alt+f221-Aug-2018623
keyboard_ctrl+alt+z21-Aug-2018591
keyboard_ctrl+f521-Aug-2018416
keyboard_ctrl+shift+f321-Aug-2018624
keyboard_ctrl+shift+q21-Aug-2018900
keyboard_ctrl+t21-Aug-2018416
keyboard_ctrl+w21-Aug-2018415
keyboard_enter21-Aug-2018132
keyboard_escape21-Aug-2018132
keyboard_f121-Aug-2018207
keyboard_f1021-Aug-2018207
keyboard_f221-Aug-2018207
keyboard_f321-Aug-2018207
keyboard_f421-Aug-2018200
keyboard_f621-Aug-2018208
keyboard_f721-Aug-2018208
keyboard_f821-Aug-2018207
keyboard_f921-Aug-2018207
keyboard_search+down21-Aug-2018746
keyboard_search+f221-Aug-2018502
keyboard_search+L21-Aug-2018416
keyboard_search+left21-Aug-2018548
keyboard_search+right21-Aug-2018548
keyboard_search+up21-Aug-2018680
keyboard_tab21-Aug-2018208
mouse.prop21-Aug-2018698
mouse_center_cursor_gesture21-Aug-201841.5K
README21-Aug-2018842
stylus.prop.template21-Aug-2018816
stylus.py21-Aug-20184.1K

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