Does anyone know what the output from getevent means?

0x35 = X axis

0x36 = Y axis

follow this link for getevent tool

https://source.android.com/devices/input/getevent

and to see the meaning of each details follow this header file.

https://android.googlesource.com/kernel/msm.git/+/android-msm-hammerhead-3.4-kk-r1/include/linux/input.h


It doesn't look like touchscreen touches were made in your snippet or possibly x and y were not recorded.

Usually, X coordinates for touch screen are under 0003 0035 and Y is under 0003 0036 whilst 0003 0039 is usually for the finger down (with the last field looking more like 00000000) and for finger up (with the last field also looking more like ffffffff).

Not exactly sure what 0003 003a is for but it seems of little importance and it's definitely not the X or Y hexadecimal.

Also, the timestamp is measured in seconds. The section before the dash in the timestamp represents the Unix Epox on the 1st January 1970 at UTC and the timestamp after the dash becomes a date based on the seconds since the aforementioned time and date.

Hope that adds some more clarity.


/dev/input/eventX is used by evdev linux kernel subsystem which is generic input event layer handling events and passing it timestamped to the apps. You can try this to get more human readable output on what is going on Android with getevent tool, like this:

$ adb shell getevent -lp /dev/input/event1

To get all getevent's options, do:

$ adb shell getevent --help

You can read more about getevent tool here and about evdev on Wiki.

According to kernel sources, evdev use nanosecond-resolution time format (ktime) and the sources are in linux/next/include/linux/ktime.h or here, if you want to view it online.