commit | e77374ec610130a287b446e4867b3c1e7f16df10 | [log] [tgz] |
---|---|---|
author | Ian Kasprzak <iankaz@google.com> | Mon Nov 11 22:22:40 2024 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Mon Nov 11 22:22:44 2024 +0000 |
tree | be605094c0192e7eabf8b1bdcd32ffd6522aa867 | |
parent | 2029d84f19508848b98b35eadfd48583f21666b3 [diff] |
Revert "Add README with details about the status of support for ..." Revert submission 3320775-aosp_apps_car Reason for revert: Car apps not deprecated. Reverted changes: /q/submissionid:3320775-aosp_apps_car Change-Id: I941829571fdd1d44d551a400c7a255ab6ba6ee91
make CarRotaryController -j64
To enable, run:
adb shell settings put secure enabled_accessibility_services com.android.car.rotary/com.android.car.rotary.RotaryService
To disable, run:
adb shell settings delete secure enabled_accessibility_services
To rotate the controller counter-clockwise, run:
adb shell cmd car_service inject-rotary
For clockwise, run:
adb shell cmd car_service inject-rotary -c true
To rotate the controller multiple times (100 ms ago and 50 ms ago), run:
adb shell cmd car_service inject-rotary -dt 100 50
To nudge the controller up, run:
adb shell cmd car_service inject-key 280
Use KeyCode 280
for nudge up, 281
for nudge down,282
for nudge left,283
for nudge right.
To click the controller center button, run:
adb shell cmd car_service inject-key 23
To long click the controller center button, send down and up action seperately. For example:
adb shell cmd car_service inject-key 23 -a down && sleep 2 && adb shell cmd car_service inject-key 23 -a up