• Home
  • History
  • Annotate
  • only in /external/autotest/client/cros/input_playback/
NameDateSize

..29-Aug-20174 KiB

__init__.py29-Aug-20170

input_playback.py29-Aug-201720.1 KiB

keyboard.prop29-Aug-2017701

keyboard_alt+shift+i29-Aug-2017624

keyboard_ctrl+alt+f129-Aug-2017623

keyboard_ctrl+alt+f229-Aug-2017623

keyboard_ctrl+alt+z29-Aug-2017591

keyboard_ctrl+f529-Aug-2017416

keyboard_ctrl+t29-Aug-2017416

keyboard_ctrl+w29-Aug-2017415

keyboard_f129-Aug-2017207

keyboard_f1029-Aug-2017207

keyboard_f229-Aug-2017207

keyboard_f329-Aug-2017207

keyboard_f429-Aug-2017200

keyboard_f629-Aug-2017208

keyboard_f729-Aug-2017208

keyboard_f829-Aug-2017207

keyboard_f929-Aug-2017207

keyboard_search+L29-Aug-2017416

keyboard_search+shift+down29-Aug-2017591

keyboard_search+shift+left29-Aug-2017591

keyboard_search+shift+right29-Aug-2017591

keyboard_search+shift+up29-Aug-2017591

keyboard_tab29-Aug-2017208

mouse.prop29-Aug-2017698

mouse_center_cursor_gesture29-Aug-201741.5 KiB

README29-Aug-2017842

README

1How to add new gesture files:
21. Obtain a chromebook with a test image and the input source in question
3    (either onboard or plugged in).
42. 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.
93. RECORD (from the device):
10    evemu-record $node -1 > $filename
114. PLAY BACK (for verification, from the device):
12    evemu-play --insert-slot0 $node < $filename
13
14Other potentially useful commands:
15- Record device properties for emulation:
16    evemu-describe $node
17- Emulate device:
18    evemu-device < $filename
19
20
21See also https://www.freedesktop.org/wiki/Evemu/
22