/usr/share/doc/xboxdrv/examples/calibrate.macro is in xboxdrv 0.8.8-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | # Simple Macro that automate calibration in old DOS games
send ABS_X 0
send ABS_Y 0
wait 500
send JS_0 1
wait 200
send JS_0 0
send ABS_X -32768
send ABS_Y -32768
wait 500
send JS_0 1
wait 200
send JS_0 0
send ABS_X 32767
send ABS_Y 32767
wait 500
send JS_0 1
wait 200
send JS_0 0
send ABS_X 0
send ABS_Y 0
wait 500
send JS_0 1
wait 500
send JS_0 0
# EOF #
|